-
Notifications
You must be signed in to change notification settings - Fork 40
163 lines (158 loc) · 5.08 KB
/
preview.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: Portal Bridge [Preview]
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
cctp:
name: "Build USDC Bridge (CCTP)"
runs-on: "ubuntu-latest"
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
repository: xLabs-xyz/usdc-bridge
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: v16.19.1
- name: Install dependencies
run: npm ci
- name: Build
env:
NEXT_PUBLIC_NETWORK: ${{ vars.REACT_APP_CLUSTER }}
DEPLOY: deploy
run: |
npm run build
mv out/usdc-bridge.html out/index.html
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: preview-stable-bridge-build
path: out
build:
name: "Build"
runs-on: "ubuntu-latest"
concurrency:
group: ${{ github.ref }}-preview
cancel-in-progress: true
environment: Cloudflare-Preview
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: v16.19.1
- name: Setup Git
run: |
git config user.name "xLabs CI"
git config user.email "[email protected]"
- name: Install dependencies
run: npm ci
- name: Set Version
run: |
npm version $(node -p -e "require('./package.json').version")-P$(echo ${{ github.sha }} | cut -c -10)
echo "_PKG_VERSION=$(node -p -e "require('./package.json').version")" >> "${GITHUB_ENV}"
echo "_BRANCH_NAME_SHA=$(echo ${{ github.event.pull_request.head.ref }} | sha256sum | cut -c -10)" >> "${GITHUB_ENV}"
- name: Build
env:
PUBLIC_URL: "/${{ env._BRANCH_NAME_SHA }}"
NODE_OPTIONS: ${{ vars.NODE_OPTIONS }}
REACT_APP_CLUSTER: ${{ vars.REACT_APP_CLUSTER }}
REACT_APP_SOLANA_API_URL: ${{ vars.REACT_APP_SOLANA_API_URL }}
REACT_APP_COVALENT_API_KEY: ${{ secrets.REACT_APP_COVALENT_API_KEY }}
REACT_APP_TRM_API_KEY: ${{ secrets.REACT_APP_TRM_API_KEY }}
run: |
pushd public
npm run set-version
popd
echo 'REACT_APP_VERSION=$npm_package_version' > .env
npm run build
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: preview-build
path: build
- name: Deploy metadata
run: |
mkdir deploy-metadata
pushd deploy-metadata
echo ${_BRANCH_NAME_SHA} > .branch-sha
echo ${_PKG_VERSION} > .version
- name: Upload Deploy metadata
uses: actions/upload-artifact@v3
with:
name: preview-deploy-metadata
path: deploy-metadata
publish:
name: "Publish"
needs:
- build
- cctp
runs-on: "ubuntu-latest"
concurrency:
group: ${{ github.ref }}-preview
cancel-in-progress: true
permissions:
contents: read
packages: write
steps:
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: preview-build
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: preview-stable-bridge-build
path: usdc-bridge
- name: Set up GitHub NPM registry
uses: actions/setup-node@v3
with:
node-version: v16.19.1
registry-url: https://npm.pkg.github.com
- name: Publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm publish
deploy:
name: "Deploy Preview"
needs: publish
runs-on: "ubuntu-latest"
concurrency:
group: ${{ github.ref }}-preview
cancel-in-progress: true
permissions:
contents: write
environment: Cloudflare-Preview
steps:
- name: Checkout preview branch
uses: actions/checkout@v3
with:
ref: preview
- name: Setup Git
run: |
git config user.name "xLabs CI"
git config user.email "[email protected]"
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: preview-deploy-metadata
path: deploy-metadata
- name: Set deploy metadata
run: |
echo "_PKG_VERSION=$(cat deploy-metadata/.version)" >> ${GITHUB_ENV}
echo "_BRANCH_NAME_SHA=$(cat deploy-metadata/.branch-sha)" >> ${GITHUB_ENV}
- name: Trigger a preview Deploy
run: |
sleep 30s
mkdir -p preview/${{ env._BRANCH_NAME_SHA }}
pushd preview/${{ env._BRANCH_NAME_SHA }}
[[ ! -f .latest ]] && touch .latest
[[ ! -f .artifacts ]] && touch .artifacts
cat .latest >> .artifacts
echo ${{ env._PKG_VERSION }} > .latest
git add .artifacts .latest
git commit -m"Update preview artifacts ${{ env._PKG_VERSION }}"
git push
echo "The preview URL is: ${{ vars.PREVIEW_ROOT_URL }}/${{ env._BRANCH_NAME_SHA }}/" >> ${GITHUB_STEP_SUMMARY}