-
Notifications
You must be signed in to change notification settings - Fork 79
59 lines (49 loc) · 1.46 KB
/
build.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
name: Build app list and deploy website
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build distribution
run: npm run build
- name: Deploy apps source website
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist/
force_orphan: true
- name: Checkout apps repo
if: ${{ github.repository_owner == 'vechain' }}
uses: actions/checkout@v3
with:
repository: 'vechain/app-hub-app'
path: 'website'
- name: Build website
if: ${{ github.repository_owner == 'vechain' }}
run: cd website && npm ci && npm install ../dist && npm run build
- name: Deploy website
if: ${{ github.repository_owner == 'vechain' }}
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.PERSONAL_TOKEN }}
publish_dir: website/dist/
cname: apps.vechain.org
force_orphan: true
external_repository: vechain/app-hub-app