From b7aecb737e471f7b0f0591b4e5407b090de8332f Mon Sep 17 00:00:00 2001 From: Waldo Jaquith Date: Wed, 27 Dec 2023 17:12:24 -0500 Subject: [PATCH] Try further S3 metadata --- .github/workflows/deploy.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b1925b28..a176ca40 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -74,7 +74,7 @@ jobs: if: ${{ needs.build.outputs.github_branch == 'master' }} run: | aws deploy push --application-name RS-Web \ - --s3-location s3://deploy.richmondsunlight.com/rs-web-staging.zip \ + --s3-location bucket=s3://deploy.richmondsunlight.com,key=rs-web-staging.zip,bundleType=zip \ --ignore-hidden-files aws deploy create-deployment \ --application-name RS-Web \ @@ -85,14 +85,10 @@ jobs: if: ${{ needs.build.outputs.github_branch == 'deploy' }} run: | aws deploy push --application-name RS-Web \ - --s3-location s3://deploy.richmondsunlight.com/rs-web-deploy.zip \ + --s3-location bucket=s3://deploy.richmondsunlight.com,key=rs-web-deploy.zip,bundleType=zip \ --ignore-hidden-files aws deploy create-deployment \ --application-name RS-Web \ --deployment-group-name RS-Web-Fleet \ --deployment-config-name CodeDeployDefault.OneAtATime \ --s3-location bucket=s3://deploy.richmondsunlight.com,key=rs-web-deploy.zip,bundleType=zip - - - -