-
Notifications
You must be signed in to change notification settings - Fork 17
49 lines (42 loc) · 1.11 KB
/
gh_pages.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
name: Github Pages
on:
release:
types: [published]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout SDK
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Checkout Base
uses: actions/checkout@v3
with:
repository: stellar/js-stellar-base
ref: master
path: js-stellar-base
- name: Install Node 16
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install Dependencies
run: yarn install
- name: Checkout GH pages
uses: actions/checkout@v3
with:
repository: stellar/js-soroban-client
ref: gh-pages
path: jsdoc
- name: Build package and generate JS docs
continue-on-error: true
run: yarn docs
- name: Publish JS docs
run: |
TAG=`git describe --tags`
cd jsdoc/
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m $TAG
git push origin gh-pages