aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2020-03-13 21:59:17 +0100
committerjohannst <johannes.stoelp@gmail.com>2020-03-13 21:59:17 +0100
commitee4ff84abec4c0ebabde925f6d0772e256fa3ddc (patch)
tree5a7993fd2935ce37ac07da8002ab4caee2ec0f92 /.github
parentc8529af1769235f46b1149a78a6712f61c905c21 (diff)
downloadnotes-ee4ff84abec4c0ebabde925f6d0772e256fa3ddc.tar.gz
notes-ee4ff84abec4c0ebabde925f6d0772e256fa3ddc.zip
added workflow to deploy mdbook to gh pages
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/gh-pages.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml
new file mode 100644
index 0000000..4af0548
--- /dev/null
+++ b/.github/workflows/gh-pages.yml
@@ -0,0 +1,26 @@
+name: github pages
+
+on:
+ push:
+ branches:
+ - master
+
+jobs:
+ deploy:
+ runs-on: ubuntu-18.04
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Setup mdBook
+ uses: peaceiris/actions-mdbook@v1
+ with:
+ mdbook-version: '0.3.5'
+ # mdbook-version: 'latest'
+
+ - run: mdbook build
+
+ - name: Deploy
+ uses: peaceiris/actions-gh-pages@v3
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./book