File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,10 @@ jobs:
126126 tags : type=ref,event=tag
127127
128128 - name : manifest
129- run : make release
129+ run : |
130+ BOOTSTRAP_IMG_TAG=$RELEASE_TAG
131+ CONTROLPLANE_IMG_TAG=$RELEASE_TAG
132+ make release
130133
131134 - name : manifest
132135 run : make release-notes
Original file line number Diff line number Diff line change @@ -43,10 +43,12 @@ $(TOOLS_BIN_DIR):
4343 mkdir -p $(TOOLS_BIN_DIR )
4444
4545# Image URL to use all building/pushing image targets
46+ BOOTSTRAP_IMG_TAG ?= v0.2.0
4647BOOTSTRAP_IMG ?= ghcr.io/cluster-api-provider-k3s/cluster-api-k3s/bootstrap-controller:v0.2.0
4748
4849# Image URL to use all building/pushing image targets
49- CONTROLPLANE_IMG ?= ghcr.io/cluster-api-provider-k3s/cluster-api-k3s/controlplane-controller:v0.2.0
50+ CONTROLPLANE_IMG_TAG ?= v0.2.0
51+ CONTROLPLANE_IMG ?= ghcr.io/cluster-api-provider-k3s/cluster-api-k3s/controlplane-controller:$(CONTROLPLANE_IMG_TAG )
5052
5153
5254# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
You can’t perform that action at this time.
0 commit comments