We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e957e1b commit eb25dffCopy full SHA for eb25dff
1 file changed
.github/workflows/buildtools.yml
@@ -20,7 +20,11 @@ on:
20
jobs:
21
build-tools:
22
name: Tools
23
- if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
+ # Allow if it's NOT a tag OR if it's being called by another workflow/manual dispatch
24
+ if: >
25
+ github.event_name == 'workflow_call' ||
26
+ github.event_name == 'workflow_dispatch' ||
27
+ !startsWith(github.ref, 'refs/tags/')
28
runs-on: ${{ matrix.os }}
29
strategy:
30
fail-fast: false
0 commit comments