Skip to content

Commit e4ab380

Browse files
committed
fix: correct condition syntax for package publishing check
1 parent 7022ccc commit e4ab380

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
needs: prepare-packages
9999
runs-on: ubuntu-latest
100100
# Skip if no packages need to be published
101-
if: ${{ fromJson(needs.prepare-packages.outputs.matrix).package[0] != null }}
101+
if: fromJson(needs.prepare-packages.outputs.matrix).package[0] != null
102102
# Use the dynamic matrix from prepare-packages job to create parallel jobs for each package
103103
strategy:
104104
matrix: ${{ fromJson(needs.prepare-packages.outputs.matrix) }}

0 commit comments

Comments
 (0)