Skip to content

Commit 4140caf

Browse files
committed
fix: log in to ghcr to do release
1 parent cb6262e commit 4140caf

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,12 @@ jobs:
9999
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0
100100
with:
101101
go-version: ${{ env.go_version }}
102+
- name: Login to GitHub Container Registry
103+
uses: docker/login-action@v3
104+
with:
105+
registry: ghcr.io
106+
username: ${{ github.actor }}
107+
password: ${{ secrets.GITHUB_TOKEN }}
102108
- name: generate release artifacts
103109
run: |
104110
make release

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ CAPI_KIND_CLUSTER_NAME ?= capi-test
242242

243243
TAG ?= dev
244244
ARCH ?= $(shell go env GOARCH)
245-
ALL_ARCH ?= amd64 arm arm64 ppc64le s390x
245+
ALL_ARCH ?= amd64 arm arm64
246246

247247
# Allow overriding the imagePullPolicy
248248
PULL_POLICY ?= Always

0 commit comments

Comments
 (0)