From 501b8031a46d512c81b71a461265d00af669dc75 Mon Sep 17 00:00:00 2001 From: dal Date: Fri, 3 Jan 2025 16:29:21 -0700 Subject: [PATCH] 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. --- .github/workflows/porter_app_staging_3155.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/porter_app_staging_3155.yml b/.github/workflows/porter_app_staging_3155.yml index e0dc16465..4691c7467 100644 --- a/.github/workflows/porter_app_staging_3155.yml +++ b/.github/workflows/porter_app_staging_3155.yml @@ -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