From 189eea31548e78c741cc78d855ff85adbe3698ec Mon Sep 17 00:00:00 2001 From: "rothwell.andy@gmail.com" Date: Thu, 23 Jan 2025 14:06:58 -0500 Subject: [PATCH] fixes push --- .github/workflows/dev_cache_and_push_to_s3.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev_cache_and_push_to_s3.yml b/.github/workflows/dev_cache_and_push_to_s3.yml index 880f23b..97a70cd 100644 --- a/.github/workflows/dev_cache_and_push_to_s3.yml +++ b/.github/workflows/dev_cache_and_push_to_s3.yml @@ -48,8 +48,8 @@ jobs: env: AWS_DEFAULT_REGION: 'us-east-1' AWS_S3_BUCKET: staging-philavotes/ballot-drop-off - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_ACCESS_KEY_ID: ${{ secrets.PHILAVOTES_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.PHILAVOTES_AWS_SECRET_ACCESS_KEY }} run: | aws s3 sync dist s3://$AWS_S3_BUCKET --region us-east-1 --delete aws s3 cp s3://$AWS_S3_BUCKET s3://$AWS_S3_BUCKET --recursive --exclude "*" --include "*.html" --metadata-directive REPLACE --acl public-read --cache-control max-age=0,no-cache,no-store,must-revalidate,proxy-revalidate,public --expires "0" --content-type "text/html; charset=utf-8"