-
-
Notifications
You must be signed in to change notification settings - Fork 151
34 lines (30 loc) · 859 Bytes
/
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
# #
# # Builds the docs and deploys to GitHub pages
# #
# # https://github.com/actions/setup-node
# # Using https://github.com/marketplace/actions/deploy-to-github-pages
# name: Deploy to Github pages
# on:
# push:
# #tags:
# # - v*
# branches:
# - master
# jobs:
# deploy_pages:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v2
# with:
# node-version: '12'
# cache: 'yarn'
# - run: yarn install
# - run: yarn docs
# - run: touch docs/.nojekyll
# - name: Deploy docs 🚀
# uses: JamesIves/github-pages-deploy-action@releases/v3
# with:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# BRANCH: gh-pages # The branch the action should deploy to.
# FOLDER: docs # The folder the action should deploy.