We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 48c173c + 8e808e7 commit 1e109f0Copy full SHA for 1e109f0
.github/workflows/regression_template.yml
@@ -141,13 +141,14 @@ jobs:
141
fi
142
143
- name: Coverage Report name
144
- id: artifact
145
- run: echo "coverage_report=coverage_report-$(date +%s)" >> $GITHUB_OUTPUT
+ id: artifact
+ if: (!inputs.skip_coverage)
146
+ run: echo "coverage_report=coverage_report-$(date +%s)" >> $GITHUB_OUTPUT
147
148
- name: Upload Code Coverage Artifacts
- uses: actions/[email protected]
149
- if: (inputs.skip_deploy && !inputs.skip_coverage)
150
- with:
+ uses: actions/[email protected]
+ if: (inputs.skip_deploy && !inputs.skip_coverage)
151
+ with:
152
name: ${{ steps.artifact.outputs.coverage_report }}
153
path: ${{ inputs.cmake_path }}/coverage_report
154
retention-days: 1
0 commit comments