-
Notifications
You must be signed in to change notification settings - Fork 22
58 lines (47 loc) · 1.25 KB
/
docs.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
name: Docs
on:
workflow_dispatch:
inputs:
notes:
description: 'Update notes'
required: false
jobs:
deploy:
name: Docs
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip-ci')"
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Cache
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup
uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: Install
run: npm install
- name: Boostrap
run: npm run bootstrap
- name: Build
run: npm run build
- name: Docs
run: npm run build:docs
- name: Copy
run: |
mkdir pages
cp -r website/build/\@spacehq/sdk/* pages/
touch pages/.nojekyll
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./pages