-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4051e6
commit 9d8fc4f
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,26 +17,26 @@ jobs: | |
node-version: 20.8 | ||
- name: install dependencies | ||
run: yarn install | ||
- name: build project | ||
run: turbo run build | ||
- name: build projects | ||
run: yarn build | ||
|
||
- uses: shinyinc/[email protected] | ||
- name: sync static with s3 | ||
run: aws s3 sync apps/static s3://${{ secrets.AWS_S3_BUCKET_NAME_HOM }} | ||
run: aws s3 sync apps/static ${{ format('s3://{0}', secrets.AWS_S3_BUCKET_NAME_HOM) }} | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DEFAULT_REGION: us-east-1 | ||
|
||
- name: sync react with s3 | ||
run: aws s3 sync apps/react/dist s3://${{ secrets.AWS_S3_BUCKET_NAME_HOM }}/react | ||
run: aws s3 sync apps/react/dist ${{ format('s3://{0}/react', secrets.AWS_S3_BUCKET_NAME_HOM) }} | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DEFAULT_REGION: us-east-1 | ||
|
||
- name: sync container with s3 | ||
run: aws s3 sync apps/container/dist s3://${{ secrets.AWS_S3_BUCKET_NAME_HOM }}/app | ||
run: aws s3 sync apps/container/dist ${{ format('s3://{0}/app', secrets.AWS_S3_BUCKET_NAME_HOM) }} | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
|