We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5974937 commit 3d1b7b2Copy full SHA for 3d1b7b2
1 file changed
.github/workflows/wiki.yml
@@ -0,0 +1,24 @@
1
+name: Publish Wiki
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - docs/**
8
+ - .github/workflows/wiki.yml
9
10
+concurrency:
11
+ group: publish-wiki
12
+ cancel-in-progress: true
13
14
+permissions:
15
+ contents: write
16
17
+jobs:
18
+ publish-wiki:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - uses: Andrew-Chen-Wang/github-wiki-action@v4
23
+ with:
24
+ path: docs/
0 commit comments