chore: update skip

This commit is contained in:
Dariusz Majcherczyk 2024-03-07 17:53:01 +01:00
parent bbd3371412
commit b7ed5a22e1
No known key found for this signature in database
GPG Key ID: C42DFD2F046CA415
2 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ jobs:
name: '(CI) check if e2e needed' name: '(CI) check if e2e needed'
outputs: outputs:
run-tests: ${{ steps.check-test.outputs.e2e-needed }} run-tests: ${{ steps.check-test.outputs.e2e-needed }}
if: steps.check-test.outputs.e2e-needed == 'true' if: ${{ steps.check-test.outputs.e2e-needed == true }}
steps: steps:
- name: Check branch - name: Check branch
id: check-test id: check-test

View File

@ -38,7 +38,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
if: ${{ inputs.projects && fromJSON(inputs.projects).length != 0 }} if: ${{ fromJSON(inputs.projects) == true }}
project: ${{ fromJSON(inputs.projects) }} project: ${{ fromJSON(inputs.projects) }}
name: ${{ matrix.project }} name: ${{ matrix.project }}
needs: runner-choice needs: runner-choice