Skip to content

Commit eb25dff

Browse files
committed
Fix maybe?
1 parent e957e1b commit eb25dff

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/buildtools.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ on:
2020
jobs:
2121
build-tools:
2222
name: Tools
23-
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
23+
# 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/')
2428
runs-on: ${{ matrix.os }}
2529
strategy:
2630
fail-fast: false

0 commit comments

Comments
 (0)