Skip to content

Commit 55dda0a

Browse files
committed
.github/workflows/publish-doc: init
1 parent 28b1fbd commit 55dda0a

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/publish-doc.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish doc
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
deploy:
10+
name: Push doc/ to gh-pages
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Publish
15+
uses: peaceiris/actions-gh-pages@v4
16+
with:
17+
github_token: ${{ secrets.GITHUB_TOKEN }}
18+
publish_dir: ./doc

0 commit comments

Comments
 (0)