Skip to content

Commit f2c7c97

Browse files
committed
feat: add linux/arm64 build
1 parent 1bc19b9 commit f2c7c97

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Get changed files
2727
id: changed-files
28-
uses: tj-actions/changed-files@v14.1
28+
uses: tj-actions/changed-files@v41
2929
with:
3030
files: |
3131
Dockerfile
@@ -54,7 +54,7 @@ jobs:
5454
uses: docker/build-push-action@v2
5555
with:
5656
context: .
57-
platforms: linux/amd64
57+
platforms: linux/amd64,linux/arm64
5858
push: true
5959
tags: ${{ steps.meta.outputs.tags }}
6060
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: docker/build-push-action@v2
4545
with:
4646
context: .
47-
platforms: linux/amd64
47+
platforms: linux/amd64,linux/arm64
4848
push: true
4949
tags: ${{ steps.meta.outputs.tags }}
5050
labels: ${{ steps.meta.outputs.labels }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM ghcr.io/siderolabs/talosctl:$TALOS_VERSION AS talosctl
44

55
FROM ghcr.io/containerd/busybox:1.36
66

7-
LABEL maintainer="Tobias Krischer <tobias.krischer@elyxon.de>"
7+
LABEL org.opencontainers.image.description "Busybox image with talosctl"
88

99
COPY --from=talosctl /talosctl /usr/local/bin/talosctl
1010
VOLUME [ "/var/run/secrets/talos.dev" ]

0 commit comments

Comments
 (0)