From 860a49d45624c0af95e77855764c517b43303206 Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Sat, 23 Jan 2021 23:35:44 -0600 Subject: [PATCH] ci: Need to wrap matrix's in [] --- .github/workflows/pytest-workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest-workflow.yml b/.github/workflows/pytest-workflow.yml index b6f29601..9ca8a7b4 100644 --- a/.github/workflows/pytest-workflow.yml +++ b/.github/workflows/pytest-workflow.yml @@ -18,11 +18,11 @@ jobs: runs-on: ubuntu-latest name: CI Test needs: changes - if: ${{ fromJson(needs.changes.outputs.modules) }} == 'true' + if: ${{ fromJson(needs.changes.outputs.modules) }} != 'false' strategy: matrix: - nxf_version: [20.11.0-edge] - tags: ${{ fromJson(needs.changes.outputs.modules) }} + nxf_version: ['20.11.0-edge'] + tags: ['${{ fromJson(needs.changes.outputs.modules) }}'] env: NXF_ANSI_LOG: false steps: