2020-08-28 16:21:08 +00:00
|
|
|
name: Publish the wiki
|
|
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-08-28 18:33:33 +00:00
|
|
|
- name: Checkout branch
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Copy README.md to wiki/Home.md
|
|
|
|
run: cp -f README.md wiki/Home.md
|
|
|
|
- name: Upload to Wiki
|
2020-08-28 16:21:08 +00:00
|
|
|
uses: SwiftDocOrg/github-wiki-publish-action@v1
|
|
|
|
with:
|
|
|
|
path: "wiki"
|
|
|
|
env:
|
|
|
|
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|
|
|
|
|