-
Notifications
You must be signed in to change notification settings - Fork 16
66 lines (56 loc) · 2.08 KB
/
deploy_MainNet_UI.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
name: 2wp-app deploy UI for MainNet
on:
push:
tags:
- 'v*'
jobs:
checkout-and-build:
runs-on: ubuntu-latest
environment: mainnet
permissions:
id-token: write
contents: read
steps:
- name: Get tag name.
id: get_tag_name
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ steps.get_tag_name.outputs.VERSION }}
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build site
run: >
VUE_APP_HOTJAR_ID=${{ secrets.MAINNET_VUE_APP_HOTJAR_ID }}
VUE_APP_CLARITY_ID=${{ secrets.MAINNET_VUE_APP_CLARITY_ID }}
VUE_APP_COIN='main'
VUE_APP_MANIFEST_EMAIL='[email protected]'
VUE_APP_MANIFEST_APP_URL='https://powpeg.rootstock.io'
VUE_APP_API_BASE_URL='https://api.2wp.rootstock.io'
VUE_APP_RSK_NODE_HOST='https://public-node.rsk.co'
VUE_APP_RSK_EXPLORER='https://explorer.rootstock.io/'
VUE_APP_WALLET_ADDRESSES_HARD_STOP=100
VUE_APP_WALLET_ADDRESS_PER_CALL=20
VUE_APP_PEGOUT_MIN_AMOUNT_ALLOWED_IN_RBTC=0.004
VUE_APP_PEGOUT_MAX_AMOUNT_ALLOWED_IN_RBTC=10
VUE_APP_PEGIN_MIN_AMOUNT_ALLOWED_IN_BTC=0.005
VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10
VUE_APP_LBC_ADDRESS='0xAA9cAf1e3967600578727F975F283446A3Da6612'
npm run-script build
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.MAINNET_ROLE_ARN }}
aws-region: us-east-1
- name: Deploy site to S3
run: |
aws s3 sync --delete --only-show-errors dist/ ${{ secrets.MAINNET_S3_BUCKET }}
- name: Invalidate CloudFront cache
run: |
aws cloudfront create-invalidation --distribution-id ${{ secrets.MAINNET_CLOUDFRONT_DISTRIBUTION }} --paths "/*"