File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed
Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ jobs:
1616 - name : Set up Go 1.x
1717 uses : actions/setup-go@v5
1818 with :
19- go-version : ' 1.22 '
19+ go-version-file : ./go.mod
2020 id : go
21- - name : Build binary
22- run : |
23- make managers
21+ # - name: Build binary
22+ # run: |
23+ # make managers
2424 - name : ' Login to GitHub Container Registry'
2525 uses : docker/login-action@v1
2626 with :
3030 - name : build container image
3131 env :
3232 REGISTRY : ghcr.io/absaoss
33- TAG : v2.7.4
33+ TAG : v2.9.3
34+ GO_VERSION : ${{ steps.go.output.go-version }}
3435 run : |
35- make docker-build
36+ make docker-build-all
37+ make docker-push-manifest
3638 - name : publish image
3739 run : |
38- docker push ghcr.io/absaoss/cluster-api-aws-controller-amd64:v2.7.4
40+ docker push ghcr.io/absaoss/cluster-api-aws-controller-amd64:v2.9.3
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ TOOLCHAIN_IMAGE := toolchain
111111
112112TAG ?= dev
113113ARCH ?= $(shell go env GOARCH)
114- ALL_ARCH ?= amd64 arm arm64 ppc64le s390x
114+ ALL_ARCH ?= amd64 arm64
115115
116116# main controller
117117CORE_IMAGE_NAME ?= cluster-api-aws-controller
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ require (
5454 sigs.k8s.io/aws-iam-authenticator v0.6.13
5555 sigs.k8s.io/cluster-api v1.10.2
5656 sigs.k8s.io/cluster-api/test v1.10.2
57- sigs.k8s.io/controller-runtime v0.20.4
57+ sigs.k8s.io/controller-runtime v0.21.0
5858 sigs.k8s.io/yaml v1.4.0
5959)
6060
You can’t perform that action at this time.
0 commit comments