move
This commit is contained in:
19
jailman/wiki/.github/workflows/deploy.yml
vendored
Normal file
19
jailman/wiki/.github/workflows/deploy.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: Publish Wiki via GitHub Pages
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Deploy Wiki
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout master
|
||||
uses: actions/checkout@v1
|
||||
with:
|
||||
ref: 'master'
|
||||
- name: Deploy docs
|
||||
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Reference in New Issue
Block a user