File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ jobs:
2727 - name : Checkout repository
2828 uses : actions/checkout@v2
2929
30- - name : Set up Go
31- uses : actions /setup-go @v2
32- with :
33- go-version : 1.17
34- id : go
30+ - name : Set up QEMU
31+ uses : docker /setup-qemu-action @v2
32+
33+ - name : Set up Docker Buildx
34+ uses : docker/setup-buildx-action@v2
3535
3636 # Login against a Docker registry except on PR
3737 # https://github.com/docker/login-action
@@ -59,11 +59,10 @@ jobs:
5959 # Build and push Docker image with Buildx (don't push on PR)
6060 # https://github.com/docker/build-push-action
6161 - name : Build and push Docker image
62- uses : docker/build-push-action@v2
62+ uses : docker/build-push-action@v4
6363 with :
6464 context : .
65- build-args : |
66- ARCH=amd64
65+ platforms : linux/amd64,linux/arm64
6766 push : ${{ github.event_name != 'pull_request' }}
6867 tags : ${{ steps.meta.outputs.tags }}
6968 labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change 3434 go get -v -t -d ./...
3535
3636 - name : Test
37- run : make build.image/multiarch
37+ run : make build.image
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ COPY go.sum .
2424RUN go mod download
2525
2626COPY . .
27+ RUN make build
2728
2829FROM alpine:3.18
2930
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ apiVersion: v2
22name : external-dns
33description : ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
44type : application
5- version : 1.13.0
6- appVersion : 0.13.5-202300727 -1700-adobe
5+ version : 1.13.0-20230727-1700-adobe
6+ appVersion : 0.13.5-20230727 -1700-adobe
77keywords :
88 - kubernetes
99 - externaldns
You can’t perform that action at this time.
0 commit comments