We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec55cfb commit 3669dadCopy full SHA for 3669dad
1 file changed
.github/workflows/publish-documentation.yml
@@ -0,0 +1,22 @@
1
+name: Publish Documentation
2
+on:
3
+ push:
4
+ branches:
5
+ - documentation # TODO: adjust this to be the main branch, i.e. Development
6
+permissions:
7
+ contents: write
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Configure Git Credentials
14
+ run: |
15
+ git config user.name github-actions[bot]
16
+ git config user.email 41898282+github-actions[bot]@users.noreply.github.com
17
+ - name: Publish docs
18
+ - uses: actions/setup-python@v5
19
+ with:
20
+ python-version: 3.x
21
+ - run: pip install mkdocs
22
+ - run: mkdocs gh-deploy --force
0 commit comments