forked from frankaemika/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 874 Bytes
/
deploy.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
name: deploy
# Controls when the workflow will run
on:
# Triggers the workflow on push events but only for the master branch
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
-
name: Install
run: pip install -r requirements.txt
-
name: Build
run: make html
-
name: Nojekyll
run: touch build/html/.nojekyll
-
name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: build/html
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}