22 lines
380 B
YAML
22 lines
380 B
YAML
|
name: Publish the wiki
|
||
|
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
|
||
|
|
||
|
jobs:
|
||
|
publish:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Upload Documentation to Wiki
|
||
|
uses: SwiftDocOrg/github-wiki-publish-action@v1
|
||
|
with:
|
||
|
path: "wiki"
|
||
|
env:
|
||
|
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|
||
|
|