Skip to content

Commit 5be4e38

Browse files
authored
Merge branch 'main' into fix_empty_report_w_one_section
2 parents d0d480b + f90e4a5 commit 5be4e38

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/cdci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
branches: [main]
88
release:
99
types: [published]
10+
workflow_dispatch:
1011

1112
jobs:
1213
test:
@@ -130,6 +131,11 @@ jobs:
130131
build-executable:
131132
name: Build-exe-${{ matrix.os.label }}
132133
runs-on: ${{ matrix.os.runner }}
134+
if: |
135+
(github.event_name == 'push' && github.ref == 'refs/heads/main') ||
136+
github.event_name == 'release' ||
137+
startsWith(github.ref, 'refs/tags') ||
138+
github.event_name == 'workflow_dispatch'
133139
needs:
134140
- test
135141
- other-reports

0 commit comments

Comments
 (0)