Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Heinrich <[email protected]>
  • Loading branch information
andistorm committed Sep 10, 2024
1 parent 6a95309 commit 8a221eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@ on:
required: false
default: 'true'
type: string
run_coverage_badge_creation:
description: 'Run coverage badge creation'
do_not_run_coverage_badge_creation:
description: 'Do not run coverage badge creation'
required: false
default: '${{ inputs.run_coverage == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}'
default: 'false'
type: string
run_install:
description: 'Run install'
Expand Down Expand Up @@ -435,7 +435,7 @@ jobs:
needs:
- build
runs-on: ${{ inputs.runner }}
if: ${{ inputs.run_coverage_badge_creation == 'true' }}
if: ${{ inputs.do_not_run_coverage_badge_creation == 'false' && inputs.run_coverage == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
steps:
- name: Download coverage report
uses: actions/[email protected]
Expand Down

0 comments on commit 8a221eb

Please sign in to comment.