Skip to content

Commit

Permalink
workflows: use ' instead of " in coniditonals
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Demeester <[email protected]>
  • Loading branch information
vdemeester committed Jan 19, 2024
1 parent 6c418c8 commit c66d395
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ jobs:
# installs Tekton Pipelines and `tkn` command line, including a local Container-Registry with
# settings to reach it during testing
- uses: openshift-pipelines/setup-tektoncd@v1
if: ${{ matrix.pipeline-version != "v0.47.6" && matrix.pipeline-version != "v0.50.5" }}
if: ${{ matrix.pipeline-version != 'v0.47.6' && matrix.pipeline-version != 'v0.50.5' }}
with:
pipeline_version: ${{ matrix.pipeline-version }}
feature_flags: '{ "coschedule": "pipelineruns" }'
- uses: openshift-pipelines/setup-tektoncd@v1
if: ${{ matrix.pipeline-version == "v0.47.6" || matrix.pipeline-version == "v0.50.5" }}
if: ${{ matrix.pipeline-version == 'v0.47.6' || matrix.pipeline-version == 'v0.50.5' }}
with:
pipeline_version: ${{ matrix.pipeline-version }}

Expand Down

0 comments on commit c66d395

Please sign in to comment.