We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
any_builds
1 parent cb5578c commit 295069dCopy full SHA for 295069d
.github/workflows/linux.yml
@@ -48,7 +48,7 @@ jobs:
48
image:
49
needs:
50
- generate-matrix
51
- if: ${{ needs.generate-matrix.outputs.any_builds }}
+ if: ${{ needs.generate-matrix.outputs.any_builds == 'true' }}
52
strategy:
53
fail-fast: false
54
matrix:
@@ -122,6 +122,7 @@ jobs:
122
runs-on: ubuntu-latest
123
outputs:
124
matrix: ${{ steps.set-matrix.outputs.matrix }}
125
+ any_builds: ${{ steps.set-matrix.outputs.any_builds }}
126
steps:
127
- uses: actions/checkout@v4
128
@@ -147,7 +148,7 @@ jobs:
147
148
echo "any_builds=true" >> $GITHUB_OUTPUT
149
else
150
# Build matrix is empty
- echo "any_builds=true" >> $GITHUB_OUTPUT
151
+ echo "any_builds=false" >> $GITHUB_OUTPUT
152
fi
153
154
build:
0 commit comments