Skip to content

Commit 0d37658

Browse files
authored
[build] Use windows_build_arch from context (#864)
`inputs.windows_build_arch` is not always populated. `windows_build_arch` from the `context` job always is.
1 parent 689c812 commit 0d37658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-toolchain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ jobs:
632632
uses: ./.github/workflows/swift-toolchain.yml
633633
with:
634634
build_os: Windows
635-
build_arch: ${{ inputs.windows_build_arch }}
635+
build_arch: ${{ needs.context.outputs.windows_build_arch }}
636636
build_matrix: ${{ needs.context.outputs[format('windows_{0}_build_matrix', needs.context.outputs.windows_build_cpu)] }}
637637
host_matrix: ${{ needs.context.outputs[format('windows_{0}_host_matrix', needs.context.outputs.windows_build_cpu)] }}
638638
target_matrix: ${{ needs.context.outputs[format('windows_{0}_target_matrix', needs.context.outputs.windows_build_cpu)] }}

0 commit comments

Comments
 (0)