-
Notifications
You must be signed in to change notification settings - Fork 22
51 lines (44 loc) · 1.13 KB
/
deploy-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
name: Deploy docs
on:
push:
branches:
- master
paths:
- '**.js'
- '**.json'
- '**.ts'
- '**.md'
- '**.yml'
jobs:
start:
runs-on: ubuntu-latest
steps:
- name: Setup ssh agent
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
mkdir -p ~/.ssh
ssh-keyscan github.com >> ~/.ssh/known_hosts
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.SSH_MACHINE_KEY_DOCS }}"
- name: Setup git
run: |
git config --global user.email "[email protected]"
git config --global user.name "EtherspotBOT"
- name: Checkout
uses: actions/checkout@v4
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Build docs
run: npm run docs:build
- name: Install gh-pages cli
run: npm install gh-pages -g
- name: Deploy docs
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
npm run docs:deploy