Skip to content

Commit 2967e47

Browse files
Add GH Actions workflow for publishing docs using manual trigger
Signed-off-by: Alexander Shenshin <[email protected]>
1 parent dd370e1 commit 2967e47

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: deploy-docs
2+
3+
on: workflow_dispatch
4+
5+
jobs:
6+
deploy-docs:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Check out
10+
uses: actions/checkout@v4
11+
12+
- name: Set up the environment
13+
uses: ./.github/actions/setup-poetry-env
14+
15+
- name: Deploy documentation
16+
run: poetry run mkdocs gh-deploy --force

0 commit comments

Comments
 (0)