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 28fbd42 commit f1163e5Copy full SHA for f1163e5
.github/workflows/documentation.yml
@@ -3,11 +3,8 @@ name: Documentation Generation and Deployment
3
on:
4
# Trigger on pushes to main branch
5
push:
6
- branches: [main]
+ branches: ['*'] # Trigger on pushes to any branch
7
8
- # Trigger on pull requests
9
- pull_request:
10
11
12
# Allow manual trigger
13
workflow_dispatch:
@@ -59,7 +56,7 @@ jobs:
59
56
run-tests:
60
57
runs-on: ubuntu-latest
61
58
needs: [install-dependencies]
62
- if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.install_dependencies }}
+ # No if condition, run for all events
63
steps:
64
- name: Run tests
65
run: |
0 commit comments