Skip to content

Commit f6825e5

Browse files
committed
Update Nav
1 parent f49b57b commit f6825e5

1 file changed

Lines changed: 15 additions & 5 deletions

File tree

.github/workflows/deploy_docs.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
11
name: Deploy Docs
2+
23
on:
34
push:
45
branches:
56
- main
7+
68
permissions:
79
contents: write
10+
811
jobs:
912
deploy:
1013
runs-on: ubuntu-latest
1114
steps:
12-
- uses: actions/checkout@v4
13-
- 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
1420
with:
15-
python-version: 3.x
16-
- run: pip install -r requirements.txt
17-
- 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

Comments
 (0)