Skip to content

Commit

Permalink
Fix pipeline matrix extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
thojou committed Feb 28, 2024
1 parent 3750c6e commit 1922283
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ env:
"release/7": {"php": ["7.4"], "ilias": ["release_7"]},
"release/8": {"php": ["8.0"], "ilias": ["release_8"]}
}
on:
push:
branches:
Expand All @@ -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]')"
Expand Down

0 comments on commit 1922283

Please sign in to comment.