Improve pmap protect (#1420) #4
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: Deploy Wiki | |
on: | |
push: | |
paths: | |
# Trigger when wiki directory changes | |
- 'wiki/**' | |
# or when this action changes | |
- '.github/workflows/deploy_wiki.yml' | |
branches: | |
# And only on master branch | |
- master | |
jobs: | |
deploy-wiki: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout on container | |
uses: actions/checkout@v2 | |
- name: Push Wiki Changes | |
run: ./wiki/entrypoint.sh | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# This is email of a user that can push to this repository. | |
GH_MAIL: ${{ secrets.OWNER_EMAIL }} | |
# This is username of a user that can push to this repository. | |
GH_NAME: ${{ github.repository_owner }} | |