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 562114b commit b1ea1c0Copy full SHA for b1ea1c0
.github/workflows/build-docs.yaml
@@ -49,12 +49,13 @@ jobs:
49
poetry install --with docs
50
51
- name: Run tests
52
+ if: github.event_name != 'workflow_dispatch'
53
run: |
54
echo "Testing documentation build..."
55
make test-docs
56
57
- name: Build documentation
- if: ${{ github.ref == 'refs/heads/dev' }}
58
+ if: ${{ github.ref == 'refs/heads/dev' }} && github.event_name != 'workflow_dispatch'
59
60
make docs
61
0 commit comments