-
Notifications
You must be signed in to change notification settings - Fork 228
69 lines (58 loc) · 2.11 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Build & Release
on: [push]
jobs:
build:
strategy:
matrix:
node: ["22.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
# Set the credentials from repository settings/secrets
- name: Configure AWS credentials
if: github.ref == 'refs/heads/master'
uses: aws-actions/configure-aws-credentials@v4
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 }}
- name: Build new vue demo app
if: github.ref == 'refs/heads/master'
run: |
cd demo/vue-app-new
npm install
npm run build
env:
VITE_SOLANA_MAINNET_RPC: ${{ secrets.VITE_SOLANA_MAINNET_RPC }}
VITE_APP_PIMLICO_API_KEY: ${{ secrets.PIMLICO_API_KEY }}
# Copy the files from build folder to the S3 bucket
# Upload to S3
- name: sync vue app new s3
if: github.ref == 'refs/heads/master'
uses: jakejarvis/s3-sync-action@master
env:
SOURCE_DIR: "./demo/vue-app-new/dist"
AWS_REGION: "us-east-1"
AWS_S3_BUCKET: "demo-sdk.web3auth.io"
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# Invalidate Cloudfront (this action)
- name: invalidate vue app new s3
if: github.ref == 'refs/heads/master'
uses: chaitanyapotti/cloudfront-update-distribution@v4
with:
cloudfront-distribution-id: ${{ secrets.AWS_CLOUDFRONT_NEW_DEMO_APP_DISTRIBUTION_ID }}
cloudfront-invalidation-path: "/*"
cloudfront-invalidation-required: true
cloudfront-wait-for-service-update: false