We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3697f54 commit 81c344bCopy full SHA for 81c344b
.github/workflows/download.yaml
@@ -59,7 +59,9 @@ jobs:
59
run: echo "nonEmpty=$(test -s index.html)" >> "$GITHUB_OUTPUT"
60
61
- name: Validate job outputs store properly
62
- run: echo "Value of file.nonEmpty is:$(${{steps.verification.outputs.file}}&& true && echo " non-empty" || echo " empty")"
+ env:
63
+ test_value: ${{steps.verification.outputs.file}}
64
+ run: echo "Value of file.nonEmpty is ($test_value && true && echo "non-empty" || echo "empty")"
65
66
- name: Cache the file - to be used in deployment workflow
67
uses: actions/upload-artifact@v4
0 commit comments