You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
535 B
26 lines
535 B
name: Publish Wiki
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'wiki/**'
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
wiki:
|
|
name: Publish Wiki
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Source Code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Upload Documentation to Wiki
|
|
uses: Andrew-Chen-Wang/github-wiki-action@v2
|
|
env:
|
|
WIKI_DIR: wiki/
|
|
GH_TOKEN: ${{ secrets.PAT }}
|
|
GH_MAIL: ${{ secrets.EMAIL }}
|
|
GH_NAME: ${{ github.repository_owner }}
|
|
EXCLUDED_FILES: "*.json"
|