Update S3 configuration in CI workflows
- Replaced the S3_CACHE_PATH variable with S3_PUBLIC_URL in both `pr-test.yml` and `unit-test.yml` workflows, enhancing the integration with S3 by providing a public URL for access. - This change aligns with the ongoing improvements to S3-related environment variables for better deployment and testing processes.
This commit is contained in:
parent
d8cc1f2390
commit
18547852b7
2 changed files with 2 additions and 2 deletions
2
.github/workflows/pr-test.yml
vendored
2
.github/workflows/pr-test.yml
vendored
|
|
@ -78,7 +78,7 @@ env:
|
|||
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
|
||||
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
|
||||
S3_BUCKET: ${{ secrets.S3_BUCKET }}
|
||||
S3_CACHE_PATH: /tmp/s3-cache
|
||||
S3_PUBLIC_URL: ${{ secrets.S3_PUBLIC_URL }}
|
||||
|
||||
jobs:
|
||||
UnitTest:
|
||||
|
|
|
|||
2
.github/workflows/unit-test.yml
vendored
2
.github/workflows/unit-test.yml
vendored
|
|
@ -82,7 +82,7 @@ env:
|
|||
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
|
||||
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
|
||||
S3_BUCKET: ${{ secrets.S3_BUCKET }}
|
||||
S3_CACHE_PATH: /tmp/s3-cache
|
||||
S3_PUBLIC_URL: ${{ secrets.S3_PUBLIC_URL }}
|
||||
|
||||
jobs:
|
||||
unit-test:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue