-
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
1 parent
880dd9c
commit 2e30eb6
Showing
1 changed file
with
60 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,60 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: master deployment | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the develop branch | ||
push: | ||
branches: [master] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
node: ['20.x'] | ||
os: [ubuntu-latest] | ||
|
||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
cache: 'npm' | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Generate build | ||
run: npm run build | ||
|
||
# Set the credentials from repository settings/secrets | ||
- 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: ${{ secrets.AWS_REGION_US }} | ||
|
||
# Upload to S3 | ||
- name: sync s3 | ||
uses: jakejarvis/s3-sync-action@master | ||
env: | ||
SOURCE_DIR: 'dist' | ||
AWS_REGION: 'us-east-1' | ||
AWS_S3_BUCKET: 'demo.web3auth.io' | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
|
||
# Invalidate Cloudfront | ||
- name: invalidate | ||
uses: chaitanyapotti/cloudfront-update-distribution@v2 | ||
with: | ||
cloudfront-distribution-id: ${{ secrets.DISTRIBUTION_DEMO }} | ||
cloudfront-invalidation-path: '/*' | ||
cloudfront-invalidation-required: true | ||
cloudfront-wait-for-service-update: false |