Skip to content

Commit e31d470

Browse files
committed
Update web action
1 parent cedc6e4 commit e31d470

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/update-web-main.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Update web main
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build-and-publish:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
14+
- name: Deploy to GitHub Pages
15+
if: success()
16+
uses: crazy-max/ghaction-github-pages@v4
17+
with:
18+
target_branch: gh-pages
19+
build_dir: documentation
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)