Skip to content

Commit

Permalink
Fix release tagging (#47)
Browse files Browse the repository at this point in the history
Signed-off-by: Endre Karlson <[email protected]>
Co-authored-by: ekarlso <[email protected]>
  • Loading branch information
ekarlso and ekarlso authored Aug 22, 2023
1 parent 80058e0 commit b1e8923
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ jobs:
tags: type=ref,event=tag

- name: manifest
run: make release
run: |
BOOTSTRAP_IMG_TAG=$RELEASE_TAG
CONTROLPLANE_IMG_TAG=$RELEASE_TAG
make release
- name: manifest
run: make release-notes
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ $(TOOLS_BIN_DIR):
mkdir -p $(TOOLS_BIN_DIR)

# Image URL to use all building/pushing image targets
BOOTSTRAP_IMG_TAG ?= v0.2.0
BOOTSTRAP_IMG ?= ghcr.io/cluster-api-provider-k3s/cluster-api-k3s/bootstrap-controller:v0.2.0

# Image URL to use all building/pushing image targets
CONTROLPLANE_IMG ?= ghcr.io/cluster-api-provider-k3s/cluster-api-k3s/controlplane-controller:v0.2.0
CONTROLPLANE_IMG_TAG ?= v0.2.0
CONTROLPLANE_IMG ?= ghcr.io/cluster-api-provider-k3s/cluster-api-k3s/controlplane-controller:$(CONTROLPLANE_IMG_TAG)


# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
Expand Down

0 comments on commit b1e8923

Please sign in to comment.