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.
1 parent 9efbcde commit e6befc9Copy full SHA for e6befc9
.github/workflows/cpp-packaging.yml
@@ -44,9 +44,9 @@ jobs:
44
echo "::warning ::Using commit ID '${{ github.event.inputs.commitIdToPackage }}' for building and packaging SDK and tests."
45
fi
46
47
- if [[ "${{ github.event.inputs.preserveIntermediateArtifacts }}" != "0" && -n "${{ github.event.inputs.preserveIntermediateArtifacts }}" ]]; then
48
- echo "::warning ::Intermediate artifacts will be preserved."
49
- fi
+ - name: log if preserving intermediate artifacts
+ if: ${{ !(github.event.inputs.preserveIntermediateArtifacts == 0) }}
+ run: echo "::warning ::Intermediate artifacts will be preserved."
50
51
build_tools:
52
name: build-tools-${{ matrix.tools_platform }}
0 commit comments