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 1261745 commit a5a0cc9Copy full SHA for a5a0cc9
.github/workflows/docs.yml
@@ -3,13 +3,11 @@ name: Deploy Documentation
3
on:
4
push:
5
branches:
6
- - main # or 'master' if that's your default branch
7
- paths:
8
- - 'docs/**'
9
- - '.github/workflows/deploy-docs.yml'
+ - main
10
11
jobs:
12
- build-and-deploy:
+ deploy-docs:
+ if: contains(github.event.head_commit.message, '[docs]')
13
runs-on: ubuntu-latest
14
15
steps:
@@ -24,7 +22,7 @@ jobs:
24
22
- name: Install dependencies
25
23
run: |
26
python -m pip install --upgrade pip
27
- pip install -r docs/requirements.txt # adjust path as needed
+ pip install -r docs/requirements.txt
28
pip install ghp-import
29
30
- name: Build HTML docs
0 commit comments