diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7447c75d..250b3fe1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -74,21 +74,21 @@ 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 deploy.richmondsunlight.com/rs-web-staging.zip \ --ignore-hidden-files aws deploy create-deployment \ --application-name RS-Web \ --deployment-group-name RS-Web-Staging \ --deployment-config-name CodeDeployDefault.OneAtATime \ - --s3-location bucket=s3://deploy.richmondsunlight.com,key=rs-web-staging.zip,bundleType=zip + --s3-location bucket=deploy.richmondsunlight.com,key=rs-web-staging.zip,bundleType=zip - name: Production CodeDeploy Deployment 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 deploy.richmondsunlight.com/rs-web-deploy.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 + --s3-location bucket=deploy.richmondsunlight.com,key=rs-web-deploy.zip,bundleType=zip