build: Fix missing target_arch parameter in build action
This was causing failures on arm64, where the build action had an arm-specific clause that was skipped due to the missing parameter. Change-Id: I71b7fb15120855c444749dc2216b5f19f0561f6e
This commit is contained in:
parent
879e2fef16
commit
6cbc797ccc
|
@ -87,6 +87,7 @@ jobs:
|
||||||
uses: ./src/.github/workflows/custom-actions/build-packager
|
uses: ./src/.github/workflows/custom-actions/build-packager
|
||||||
with:
|
with:
|
||||||
os_name: ${{ matrix.os_name }}
|
os_name: ${{ matrix.os_name }}
|
||||||
|
target_arch: ${{ matrix.target_arch }}
|
||||||
lib_type: ${{ matrix.lib_type }}
|
lib_type: ${{ matrix.lib_type }}
|
||||||
build_type: ${{ matrix.build_type }}
|
build_type: ${{ matrix.build_type }}
|
||||||
build_type_suffix: ${{ matrix.build_type_suffix }}
|
build_type_suffix: ${{ matrix.build_type_suffix }}
|
||||||
|
|
|
@ -161,6 +161,7 @@ jobs:
|
||||||
uses: ./src/.github/workflows/custom-actions/build-packager
|
uses: ./src/.github/workflows/custom-actions/build-packager
|
||||||
with:
|
with:
|
||||||
os_name: ${{ matrix.os_name }}
|
os_name: ${{ matrix.os_name }}
|
||||||
|
target_arch: ${{ matrix.target_arch }}
|
||||||
lib_type: ${{ matrix.lib_type }}
|
lib_type: ${{ matrix.lib_type }}
|
||||||
build_type: ${{ matrix.build_type }}
|
build_type: ${{ matrix.build_type }}
|
||||||
build_type_suffix: ${{ matrix.build_type_suffix }}
|
build_type_suffix: ${{ matrix.build_type_suffix }}
|
||||||
|
|
Loading…
Reference in New Issue