Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/cdci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
branches: [main]
release:
types: [published]
workflow_dispatch:

jobs:
test:
Expand Down Expand Up @@ -130,6 +131,11 @@ jobs:
build-executable:
name: Build-exe-${{ matrix.os.label }}
runs-on: ${{ matrix.os.runner }}
if: |
github.event_name == 'push' && github.ref == 'refs/heads/main' ||
github.event_name == 'release' ||
startsWith(github.ref, 'refs/tags') ||
github.event_name == 'workflow_dispatch'
needs:
- test
- other-reports
Expand Down