Skip to content

Update README.md

Update README.md #23

name: Publish wiki
on:
push:
branches: [main]
paths:
- '**'
- .github/workflows/copy-readme-to-wiki.yml
concurrency:
group: publish-wiki
cancel-in-progress: true
permissions:
contents: write
jobs:
publish-wiki:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Rename README.md to HOME.md
run: |
if [ -f README.md ]; then
mv README.md HOME.md
fi
- uses: Andrew-Chen-Wang/github-wiki-action@v4
with:
token: ${{ secrets.GH_TOKEN }}
path: .