Update GitHub Actions workflow to use new S3 URL for Postgres SSL certificate

- Changed the S3 URL variable for downloading the Postgres SSL certificate in the GitHub Actions workflow from `PG_CERT_S3_URL` to `CERT_S3_URL`.
- This update ensures the workflow correctly references the updated secret for SSL certificate retrieval, improving the reliability of the deployment process.
This commit is contained in:
dal 2025-01-03 16:29:21 -07:00
parent 5f6792484a
commit 501b8031a4
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ jobs:
- name: Download Postgres certificate from S3
run: |
mkdir -p ~/.postgresql
aws s3 cp ${{ secrets.PG_CERT_S3_URL }} ~/.postgresql/root.crt
aws s3 cp ${{ secrets.CERT_S3_URL }} ~/.postgresql/root.crt
- name: Run migrations
run: diesel migration run