From 19222831d9f1ccbfc80daabc53476ed404f01b58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Jou=C3=9Fen?= Date: Wed, 28 Feb 2024 16:31:13 +0100 Subject: [PATCH] Fix pipeline matrix extraction --- .github/workflows/ci.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 063ab3f..ae797fa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,6 @@ env: "release/7": {"php": ["7.4"], "ilias": ["release_7"]}, "release/8": {"php": ["8.0"], "ilias": ["release_8"]} } - on: push: branches: @@ -23,7 +22,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - id: set-matrix - run: echo "$(echo $MATRIX | jq -c --arg branch $BRANCH_NAME '.[$branch]')" >> $GITHUB_OUTPUT + run: echo "matrix=$(echo $MATRIX | jq -c --arg branch $BRANCH_NAME '.[$branch]')" >> "$GITHUB_OUTPUT" PHPUnit: if: "!contains(github.event.head_commit.message, '[CI SKIP]')"