Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,12 @@ jobs:
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # tag=v6.0.0
with:
go-version: ${{ env.go_version }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run release
run: |
echo "Version is: $VERSION"
Expand Down
29 changes: 29 additions & 0 deletions CHANGELOG/v1.10.7-ncn.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## 👌 Kubernetes version support

- Management Cluster: v1.28.x -> v1.33.x
- Workload Cluster: v1.26.x -> v1.33.x

[More information about version support can be found here](https://cluster-api.sigs.k8s.io/reference/versions.html)

## Changes since v1.10.7-ncn.3
## :chart_with_upwards_trend: Overview
- 2 new commits merged

## :sparkles: New Features

## :seedling: Others
- b2d8cc49d fix: allows us to push packages from GHA
- 55f04b727 fix: log in to ghcr to do release

## Dependencies

### Added
_Nothing has changed._

### Changed

### Removed
_Nothing has changed._

_Thanks to all our contributors!_ 😊

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ CAPI_KIND_CLUSTER_NAME ?= capi-test

TAG ?= dev
ARCH ?= $(shell go env GOARCH)
ALL_ARCH ?= amd64 arm arm64 ppc64le s390x
ALL_ARCH ?= amd64 arm arm64

# Allow overriding the imagePullPolicy
PULL_POLICY ?= Always
Expand Down