Skip to content

Commit 37c582e

Browse files
update json array syntax in workflow
1 parent d441a5f commit 37c582e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/newbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
if: needs.prepare.outputs.deps-to-build
151151
strategy:
152152
matrix:
153-
dep: ${{ fromJSON(needs.prepare.outputs.deps-to-build || "[]") }}
153+
dep: ${{ fromJSON(needs.prepare.outputs.deps-to-build || '[]') }}
154154
fail-fast: false
155155
name: build ${{ matrix.dep.name }} ${{ matrix.dep.repo }} ${{ matrix.dep.ref }} ${{ matrix.dep.arch }} ${{ matrix.dep.options && toJSON(matrix.dep.options) }}
156156
runs-on: ${{ matrix.dep.name == 'core' && (matrix.dep.arch == 'arm64' && 'ubuntu-jammy-16-cores-amd64' || 'ubuntu-latest-16-cores') || (matrix.dep.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest') }}

0 commit comments

Comments
 (0)