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:
Max 2025-07-25 19:05:42 +08:00
parent d8cc1f2390
commit 18547852b7
2 changed files with 2 additions and 2 deletions

View file

@ -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:

View file

@ -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: