Skip to content

Commit f5fa429

Browse files
committed
hack: quote workflow call variables in trigger
1 parent 22a059a commit f5fa429

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/trigger.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@ jobs:
1313
build-x86_64:
1414
uses: ./.github/workflows/build.yml
1515
with:
16-
target: x86_64
17-
name: infix
18-
flavor: _minimal
16+
target: "x86_64"
17+
name: "infix"
18+
flavor: "_minimal"
1919

2020
build-aarch64:
2121
uses: ./.github/workflows/build.yml
2222
with:
23-
target: aarch64
24-
name: infix
25-
flavor: _minimal
23+
target: "aarch64"
24+
name: "infix"
25+
flavor: "_minimal"
2626

2727
test-run-x86_64:
2828
needs: build-x86_64
2929
uses: ./.github/workflows/test.yml
3030
with:
31-
target: x86_64
31+
target: "x86_64"
3232

3333
test-publish-x86_64:
3434
needs: test-run-x86_64

0 commit comments

Comments
 (0)