Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
image:
needs:
- generate-matrix
if: ${{ needs.generate-matrix.outputs.any_builds }}
if: ${{ needs.generate-matrix.outputs.any_builds == 'true' }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -122,6 +122,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
any_builds: ${{ steps.set-matrix.outputs.any_builds }}
steps:
- uses: actions/checkout@v4

Expand All @@ -147,7 +148,7 @@ jobs:
echo "any_builds=true" >> $GITHUB_OUTPUT
else
# Build matrix is empty
echo "any_builds=true" >> $GITHUB_OUTPUT
echo "any_builds=false" >> $GITHUB_OUTPUT
fi

build:
Expand Down
Loading