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.
recyclarr/.github/workflows/wiki.yml

28 lines
711 B

name: Publish Wiki
on:
push:
paths:
- 'wiki/**'
- .github/workflows/wiki.yml
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
uses: rcdailey/github-wiki-action@master # Temp until PR is merged: https://github.com/Andrew-Chen-Wang/github-wiki-action/pull/10
env:
WIKI_DIR: wiki/
GH_TOKEN: ${{ secrets.PAT }}
GH_MAIL: ${{ secrets.EMAIL }}
GH_NAME: ${{ github.repository_owner }}
EXCLUDED_FILES: "*.json"