Skip to content

Commit 7e1d453

Browse files
authored
Merge pull request #186 from firebase/feature/js_fix_log
Fix erroneously printing that artifacts will be preserved if downloading an existing SDK
2 parents 2407e2a + 561d4f8 commit 7e1d453

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/cpp-packaging.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,9 @@ jobs:
4646
fi
4747
4848
- name: log if preserving intermediate artifacts
49-
# Inverse of the conditional on the cleanup_artifacts step.
5049
if: |
51-
!(
52-
(github.event.inputs.preserveIntermediateArtifacts == 0 || github.event.inputs.preserveIntermediateArtifacts == '')
53-
&& github.event.inputs.downloadPublicVersion == ''
54-
&& github.event.inputs.downloadPreviousRun == ''
55-
)
50+
github.event.inputs.preserveIntermediateArtifacts != 0 && github.event.inputs.preserveIntermediateArtifacts != '' &&
51+
github.event.inputs.downloadPublicVersion == '' && github.event.inputs.downloadPreviousRun == ''
5652
run: echo "::warning ::Intermediate artifacts will be preserved."
5753

5854
build_tools:

0 commit comments

Comments
 (0)