-
Notifications
You must be signed in to change notification settings - Fork 0
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
Facundo De Lorenzo
committed
May 16, 2024
1 parent
7af5fc3
commit 6c324c1
Showing
2 changed files
with
85 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Front | ||
|
||
on: | ||
push: | ||
paths: | ||
- "packages/api/**" | ||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [20] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 9 | ||
- name: Use Node.js ${{matrix.node-version}} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{matrix.node-version}} | ||
cache: "pnpm" | ||
|
||
- name: Install dependencies | ||
run: pnpm i --filter api --config.dedupe-peer-dependents=false | ||
|
||
- name: Build application | ||
working-directory: ./packages/api | ||
run: pnpm build | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v2 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 | ||
|
||
- name: Build | ||
working-directory: ./packages/api | ||
run: sam build | ||
|
||
- name: SAM Deploy | ||
working-directory: ./packages/api | ||
run: | ||
yes | sam deploy --stack-name wakeup-fullstack-challenge-api --capabilities CAPABILITY_IAM | ||
|
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Front | ||
|
||
on: | ||
push: | ||
paths: | ||
- "packages/front/**" | ||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 9 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: "pnpm" | ||
|
||
- name: Install dependencies | ||
run: pnpm --filter front install | ||
|
||
- name: Build | ||
run: pnpm build:front | ||
env: | ||
CI: "" | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v2 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} #poner en secrets | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} #poner en secrets | ||
aws-region: us-east-1 | ||
|
||
- name: Deploy to s3 | ||
working-directory: ./packages/front | ||
run: | | ||
aws s3 sync build s3://wakeup-fullstack-challenge/ | ||
aws cloudfront create-invalidation --distribution-id E1M5KJF9PNWSUC --paths "/*" |