Skip to content

Commit f5ba1ac

Browse files
committed
Use native ARM builder for aarch64 image
1 parent 5f6b8bf commit f5ba1ac

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/builder.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,18 @@ jobs:
4444
build:
4545
name: Build ${{ matrix.arch }} plugin
4646
needs: init
47-
runs-on: ubuntu-latest
47+
runs-on: ${{ matrix.runs-on }}
4848
permissions:
4949
contents: read
5050
packages: write
5151
id-token: write
5252
strategy:
5353
matrix:
5454
arch: ${{ fromJson(needs.init.outputs.architectures) }}
55+
include:
56+
- runs-on: ubuntu-24.04
57+
- arch: aarch64
58+
runs-on: ubuntu-24.04-arm
5559
steps:
5660
- name: Checkout the repository
5761
uses: actions/checkout@v6.0.2
@@ -71,6 +75,7 @@ jobs:
7175
- name: Build plugin
7276
uses: home-assistant/builder@2025.11.0
7377
with:
78+
image: ${{ matrix.arch }}
7479
args: |
7580
$BUILD_ARGS \
7681
--${{ matrix.arch }} \

0 commit comments

Comments
 (0)