Skip to content

Commit 6dbc694

Browse files
Merge pull request #15 from hiero-ledger/chore/add-manual-docs-publish-workflow
Add GH Actions workflow for publishing docs using manual trigger
2 parents dd370e1 + 2967e47 commit 6dbc694

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)