We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7345534 commit 4b95f76Copy full SHA for 4b95f76
.github/workflows/docs-deploy.yml
@@ -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