Merge pull request #441 from zekroTJA/dev #704
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: Commands Wiki Generation | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
paths: | |
- 'internal/slashcommands/**' | |
jobs: | |
wiki-generate: | |
name: Wiki Generation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '^1.21' | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Build and push to wiki | |
run: | | |
go run cmd/cmdman/v2/main.go -o ./docs/commandsManual.md | |
git clone https://zekroTJA:${{ secrets.GITHUB_TOKEN }}@github.com/zekroTJA/shinpuru.wiki.git | |
mv ./docs/commandsManual.md ./shinpuru.wiki/Commands.md | |
git -C ./shinpuru.wiki add . | |
git -C ./shinpuru.wiki -c user.name="travis" -c user.email="travis" commit -m "automatically updated commands list" | |
git -C ./shinpuru.wiki push |