Sneak quick fix into release #177
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 CI | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
wiki: | |
if: ${{ github.repository_owner == 'tr7zw' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout base code | |
uses: actions/checkout@v3 | |
with: | |
path: base-code | |
- name: Checkout wiki code | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{github.repository}}.wiki | |
path: wiki | |
- name: Push to wiki | |
run: | | |
cd wiki | |
rm *.md | |
cp ../base-code/wiki/* ./ | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add . | |
git diff-index --quiet HEAD || (git commit -m "Add changes" && git push) |