We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49b57b commit f6825e5Copy full SHA for f6825e5
1 file changed
.github/workflows/deploy_docs.yml
@@ -1,17 +1,27 @@
1
name: Deploy Docs
2
+
3
on:
4
push:
5
branches:
6
- main
7
8
permissions:
9
contents: write
10
11
jobs:
12
deploy:
13
runs-on: ubuntu-latest
14
steps:
- - uses: actions/checkout@v4
- - uses: actions/setup-python@v5
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v5
20
with:
- python-version: 3.x
- - run: pip install -r requirements.txt
- - run: mkdocs gh-deploy --force --config-file mkdocs.yml
21
+ python-version: '3.x'
22
23
+ - name: Install dependencies
24
+ run: pip install -r requirements.txt
25
26
+ - name: Deploy with MkDocs
27
+ run: mkdocs gh-deploy --force --config-file mkdocs.yml
0 commit comments