-
Notifications
You must be signed in to change notification settings - Fork 6
48 lines (41 loc) · 1.04 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
name: Deploy
on:
push:
branches:
- master
tags-ignore:
- "*.*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://registry.npmjs.org
- name: Install Yarn
run: npm install -g yarn
- name: Install and Bundle
run: |
yarn install
yarn bundle:redoc
yarn bundle:swagger
- name: Deploy Local
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build
- name: Deploy Upstream
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
REPOSITORY_NAME: spotinst/docs
BRANCH: gh-pages
FOLDER: build
TARGET_FOLDER: api
CLEAN: false