mirror of https://github.com/vector-im/riot-web
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.pull/28217/head
parent
81a4498a8f
commit
5cd459ff2d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue