Merge branch 'd365collaborative:development' into development #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Wiki Update | |
# Run when contents of the wiki folder are changed | |
on: | |
push: | |
paths: | |
- 'wiki/**' | |
- 'docs/**' | |
branches: | |
- development | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Publish wiki folder to repository wiki | |
uses: FH-Inway/github-wiki-publish-action@rsync | |
with: | |
path: "wiki/ docs" | |
env: | |
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} |