Skip to content

Commit

Permalink
Update BUCKET var name for dev deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
gMonty committed Jan 13, 2025
1 parent 92c4fce commit a539aad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# Script to deploy to the dev environment
- name: 'Deploy to S3: Dev'
if: github.ref == 'refs/heads/master'
run: aws s3 sync out s3://${{ secrets.AWS_DEV_BUCKET_NAME }}/current --delete
run: aws s3 sync out s3://${{ secrets.DEV_BUCKET_NAME }}/current --delete

- name: 'Cloudfront Production: cache invalidation'
if: (startsWith(github.event.ref, 'refs/tags/v') || github.event_name == 'release')
Expand All @@ -65,5 +65,5 @@ jobs:
# Script to upload release files
- name: 'Upload release build files for staging'
if: github.event.action == 'published'
run: aws s3 sync out s3://${{ secrets.AWS_DEV_BUCKET_NAME }}/releases/${{ steps.get_version.outputs.VERSION }} --delete
run: aws s3 sync out s3://${{ secrets.DEV_BUCKET_NAME }}/releases/${{ steps.get_version.outputs.VERSION }} --delete

0 comments on commit a539aad

Please sign in to comment.