Skip to content

Commit

Permalink
Fixes for deployment wor (#19)
Browse files Browse the repository at this point in the history
kflows.
  • Loading branch information
Ardiea authored Dec 20, 2024
1 parent 13d0378 commit 0841f77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: unified-ecommerce-app-storage-ci
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET_NAME_CI }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_CI }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_CI }}
SOURCE_DIR: "out/"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: unified-ecommerce-app-storage-production
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET_NAME_PROD }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_PROD }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_PROD }}
SOURCE_DIR: "out/"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rc-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: unified-ecommerce-app-storage-qa
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET_NAME_RC }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_RC }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_RC }}
SOURCE_DIR: "out/"
Expand Down

0 comments on commit 0841f77

Please sign in to comment.