This repository was archived by the owner on Mar 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
58 lines (45 loc) · 1.43 KB
/
deploy.yml
File metadata and controls
58 lines (45 loc) · 1.43 KB
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
name: Deploy to GH pages
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
BuildAndDeploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '10'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
- name: Install Dependencies
run: npm ci
- name: Set base URL in Env
if: ${{ github.repository_owner != 'vechain' }}
run: |
echo 'BASE<<EOF' >> $GITHUB_ENV
echo "$GITHUB_REPOSITORY" | awk -F / '{print "/"$2"/"}' >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Build Website
run: npm run docs:build
- name: Deploy Without CNAME
if: ${{ github.repository_owner != 'vechain' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .vuepress/dist/
force_orphan: true
- name: Deploy With CNAME
if: ${{ github.repository_owner == 'vechain' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .vuepress/dist/
cname: docs.vechain.org
force_orphan: true