Skip to content

Commit 4b95f76

Browse files
committed
added workflow for deploying docs automatically on changes
1 parent 7345534 commit 4b95f76

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/docs-deploy.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Deploy MkDocs for LSLAutoBIDS Developers Documentation
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-python@v5
13+
with:
14+
python-version: '3.x'
15+
- run: pip install mkdocs mkdocs-material
16+
- run: mkdocs gh-deploy --force

0 commit comments

Comments
 (0)