Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/wiki-updates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish Wiki
on:
push:
branches: [main]
paths:
- wiki/**
- .github/workflows/wiki-updates.yml
workflow_dispatch:

concurrency:
group: publish-wiki
cancel-in-progress: true

permissions:
contents: write

jobs:
publish-wiki:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Publish to GitHub Wiki
uses: Andrew-Chen-Wang/github-wiki-action@v4
with:
path: wiki/
commit-message: "wiki: update from ${{ github.sha }}"
preprocess: true