.github: quote workflow call variables in trigger

This commit is contained in:
Richard Alpe
2025-07-07 09:53:02 +02:00
parent 56f14ff520
commit b3d76de8f3
+7 -7
View File
@@ -13,22 +13,22 @@ jobs:
build-x86_64:
uses: ./.github/workflows/build.yml
with:
target: x86_64
name: infix
flavor: _minimal
target: "x86_64"
name: "infix"
flavor: "_minimal"
build-aarch64:
uses: ./.github/workflows/build.yml
with:
target: aarch64
name: infix
flavor: _minimal
target: "aarch64"
name: "infix"
flavor: "_minimal"
test-run-x86_64:
needs: build-x86_64
uses: ./.github/workflows/test.yml
with:
target: x86_64
target: "x86_64"
test-publish-x86_64:
needs: test-run-x86_64