We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5f6b8bf + f5ba1ac commit 4e2a6c6Copy full SHA for 4e2a6c6
.github/workflows/builder.yml
@@ -44,14 +44,18 @@ jobs:
44
build:
45
name: Build ${{ matrix.arch }} plugin
46
needs: init
47
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.runs-on }}
48
permissions:
49
contents: read
50
packages: write
51
id-token: write
52
strategy:
53
matrix:
54
arch: ${{ fromJson(needs.init.outputs.architectures) }}
55
+ include:
56
+ - runs-on: ubuntu-24.04
57
+ - arch: aarch64
58
+ runs-on: ubuntu-24.04-arm
59
steps:
60
- name: Checkout the repository
61
uses: actions/checkout@v6.0.2
@@ -71,6 +75,7 @@ jobs:
71
75
- name: Build plugin
72
76
uses: home-assistant/builder@2025.11.0
73
77
with:
78
+ image: ${{ matrix.arch }}
74
79
args: |
80
$BUILD_ARGS \
81
--${{ matrix.arch }} \
0 commit comments