Skip to content

Commit

Permalink
Remote s3:// prefix
Browse files Browse the repository at this point in the history
It appears to be redundant.
  • Loading branch information
waldoj committed Dec 27, 2023
1 parent 30ca519 commit fe36710
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit fe36710

Please sign in to comment.