-
Notifications
You must be signed in to change notification settings - Fork 377
59 lines (56 loc) · 1.68 KB
/
deploy.yaml
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: Deploy specification
on:
push:
branches:
- main
env:
# this avoids node running out of memory while building
NODE_OPTIONS: --max_old_space_size=20480
jobs:
deploy-spec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 15
uses: actions/setup-node@v1
with:
node-version: '15'
- run: npm ci
- run: npm run build
- name: setup git config
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: Deploy assembled spec
run: |
git checkout -b assembled-spec
git add -f openrpc.json
git add -f refs-openrpc.json
git commit -m "assemble openrpc.json"
git push -fu origin assembled-spec
deploy-gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 15
uses: actions/setup-node@v1
with:
node-version: '15'
- run: npm ci
- run: npm run build
- run: npm run generate-clients
- run: 'sed -i -e "s|Prefix: \"\"|Prefix: \"/execution-apis\"|g" build/docs/gatsby/gatsby-config.js'
- run: 'sed -i -e "s|/api|api|g" build/docs/gatsby/src/pages/index.tsx'
- run: npm run build:docs
- name: setup git config
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: build/docs/gatsby/public
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}