Merge pull request #190 from stride3d/contributor-section+wiki #7
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: Publish to GitHub Wiki | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- wiki/** | |
workflow_dispatch: | |
jobs: | |
build: | |
# Run this job only if the repository is 'stride3d/stride-docs' | |
if: github.repository == 'stride3d/stride-docs' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Upload Wiki pages | |
uses: docker://decathlon/wiki-page-creator-action:2.0.1 | |
env: | |
GH_PAT: ${{ secrets.GH_PAT }} | |
ACTION_MAIL: [email protected] | |
ACTION_NAME: VaclavElias | |
OWNER: ${{ github.repository_owner }} | |
REPO_NAME: ${{ github.event.repository.name }} | |
MD_FOLDER: wiki |