Check kiwi_enable value for '1'-ness, not presence (#10482)

Change from string-y checking for true ('0' is true) to comparison against the string '1', which is only true if exactly equal to '1'.

This has been submitting more test results to Kiwi than we want/need.
This commit is contained in:
Michael Kaye 2023-04-03 09:54:49 +01:00 committed by GitHub
parent 81a4498a8f
commit 5cd459ff2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -232,7 +232,7 @@ jobs:
- tests
environment: Kiwi
runs-on: ubuntu-latest
if: ${{ needs.prepare.outputs.kiwi_enable }}
if: ${{ needs.prepare.outputs.kiwi_enable == '1' }}
steps:
- name: Download all zip files
uses: actions/download-artifact@v3