From b3d76de8f34cccbba3cee1a583d7a75a20d24147 Mon Sep 17 00:00:00 2001 From: Richard Alpe Date: Mon, 2 Jun 2025 15:48:03 +0200 Subject: [PATCH] .github: quote workflow call variables in trigger --- .github/workflows/trigger.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/trigger.yml b/.github/workflows/trigger.yml index e7b1a23d..cfab058a 100644 --- a/.github/workflows/trigger.yml +++ b/.github/workflows/trigger.yml @@ -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