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 2407e2a + 561d4f8 commit 7e1d453Copy full SHA for 7e1d453
.github/workflows/cpp-packaging.yml
@@ -46,13 +46,9 @@ jobs:
46
fi
47
48
- name: log if preserving intermediate artifacts
49
- # Inverse of the conditional on the cleanup_artifacts step.
50
if: |
51
- !(
52
- (github.event.inputs.preserveIntermediateArtifacts == 0 || github.event.inputs.preserveIntermediateArtifacts == '')
53
- && github.event.inputs.downloadPublicVersion == ''
54
- && github.event.inputs.downloadPreviousRun == ''
55
- )
+ github.event.inputs.preserveIntermediateArtifacts != 0 && github.event.inputs.preserveIntermediateArtifacts != '' &&
+ github.event.inputs.downloadPublicVersion == '' && github.event.inputs.downloadPreviousRun == ''
56
run: echo "::warning ::Intermediate artifacts will be preserved."
57
58
build_tools:
0 commit comments