-
Notifications
You must be signed in to change notification settings - Fork 3
81 lines (69 loc) · 2.28 KB
/
app-deploy-prd.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
name: Deploy production (app)
on:
push:
tags:
- "app-v*"
jobs:
deploy-package:
name: Deploy package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy app (mainnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-app-mainnet
preview_output: true
prod_mode: true
project_name: "helix-apps"
script_install: pnpm install
script_build: pnpm app build:mainnet
dist_path: apps/helixbox-app/dist
enable_notify_slack: true
slack_channel: helixbox-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
- uses: darwinia-network/devops/actions/smart-vercel@main
name: Deploy app (testnet)
with:
node_version: 20
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_section: helix-app-testnet
preview_output: true
prod_mode: true
project_name: "helix-apps-test"
script_install: pnpm install
script_build: pnpm app build:testnet
dist_path: apps/helixbox-app/dist
enable_notify_slack: true
slack_channel: helixbox-ui
slack_webhook: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
publish-ipfs:
name: Publish ipfs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Publish ipfs
env:
FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
run: |
pnpm install
pnpm app build:mainnet
mv apps/helixbox-app/fleek.config.json apps/helixbox-app/dist
cd apps/helixbox-app/dist
npm i -g @fleek-platform/cli
fleek projects switch --id=clwordxrq0003igm26h2r52n1
fleek sites deploy