mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
Add github action to publish the wiki (#63)
Signed-off-by: Henry Pauli <henry@mixict.nl> Co-authored-by: Henry Pauli <henry@mixict.nl>
This commit is contained in:
parent
134a6e5b5f
commit
c3fb016713
1 changed files with 21 additions and 0 deletions
21
.github/workflows/publish_wiki.yml
vendored
Normal file
21
.github/workflows/publish_wiki.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
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 }}
|
||||
|
Loading…
Reference in a new issue