Skip to content

Commit

Permalink
Fix/GitHub action to deploy to s3 (#185)
Browse files Browse the repository at this point in the history
* fix: Fixed staging build

* fix: Fixed staging build

* fix: Changed name to prod action
  • Loading branch information
lucaslightit authored Jun 21, 2024
1 parent 1c73751 commit 665b8a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/production_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: STAGING Deploy
name: PRODUCTION Deploy

on:
push:
Expand Down Expand Up @@ -46,4 +46,4 @@ jobs:
aws-region: us-east-2

- name: Deploy static site to S3 bucket
run: aws s3 sync ./dist/ s3://eo-care-web-prod --delete
run: aws s3 sync ./apps/eo_web/dist/ s3://eo-care-web-prod --delete
2 changes: 1 addition & 1 deletion .github/workflows/staging_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
aws-region: us-east-2

- name: Deploy static site to S3 bucket
run: aws s3 sync ./dist/ s3://eo-care-web-dev --delete
run: aws s3 sync ./apps/eo_web/dist/ s3://eo-care-web-dev --delete

0 comments on commit 665b8a0

Please sign in to comment.