24 lines
415 B
YAML
24 lines
415 B
YAML
name: Publish the wiki
|
|
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
paths:
|
|
- 'wiki/**'
|
|
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout branch
|
|
uses: actions/checkout@v1
|
|
- name: Upload Documentation to Wiki
|
|
run: bash ./.github/deploy_wiki.sh
|
|
env:
|
|
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|
|
WIKI_PATH: "wiki"
|
|
|