Skip to content

Commit cf0d483

Browse files
authored
Merge pull request #222 from cert-manager/self-upgrade
[CI] Merge self-upgrade into main
2 parents 5902213 + 0790220 commit cf0d483

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

klone.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,55 +10,55 @@ targets:
1010
- folder_name: boilerplate
1111
repo_url: https://github.com/cert-manager/makefile-modules.git
1212
repo_ref: main
13-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
13+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
1414
repo_path: modules/boilerplate
1515
- folder_name: cert-manager
1616
repo_url: https://github.com/cert-manager/makefile-modules.git
1717
repo_ref: main
18-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
18+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
1919
repo_path: modules/cert-manager
2020
- folder_name: controller-gen
2121
repo_url: https://github.com/cert-manager/makefile-modules.git
2222
repo_ref: main
23-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
23+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
2424
repo_path: modules/controller-gen
2525
- folder_name: generate-verify
2626
repo_url: https://github.com/cert-manager/makefile-modules.git
2727
repo_ref: main
28-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
28+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
2929
repo_path: modules/generate-verify
3030
- folder_name: helm
3131
repo_url: https://github.com/cert-manager/makefile-modules.git
3232
repo_ref: main
33-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
33+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
3434
repo_path: modules/helm
3535
- folder_name: help
3636
repo_url: https://github.com/cert-manager/makefile-modules.git
3737
repo_ref: main
38-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
38+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
3939
repo_path: modules/help
4040
- folder_name: kind
4141
repo_url: https://github.com/cert-manager/makefile-modules.git
4242
repo_ref: main
43-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
43+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
4444
repo_path: modules/kind
4545
- folder_name: klone
4646
repo_url: https://github.com/cert-manager/makefile-modules.git
4747
repo_ref: main
48-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
48+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
4949
repo_path: modules/klone
5050
- folder_name: oci-image
5151
repo_url: https://github.com/cert-manager/makefile-modules.git
5252
repo_ref: main
53-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
53+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
5454
repo_path: modules/oci-image
5555
- folder_name: repository-base
5656
repo_url: https://github.com/cert-manager/makefile-modules.git
5757
repo_ref: main
58-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
58+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
5959
repo_path: modules/repository-base
6060
- folder_name: tools
6161
repo_url: https://github.com/cert-manager/makefile-modules.git
6262
repo_ref: main
63-
repo_hash: caaef09569dec46733ee1c1e9c79198872f6ff9a
63+
repo_hash: 31cd2b68879ecb757d4009450079f6eed05dfd71
6464
repo_path: modules/tools

make/_shared/oci-image/01_mod.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,11 +170,11 @@ $(oci_push_targets): oci-push-%: oci-build-% | $(NEEDS_CRANE) $(NEEDS_COSIGN) $(
170170
ifneq ($(RELEASE_DRYRUN),true)
171171
if $(CRANE) image digest $(oci_$*_image_name)@$(call oci_digest,$*) >/dev/null 2>&1; then \
172172
echo "Digest already exists, will retag without resigning."; \
173-
$(call oci_push_command,$*); \
173+
$(call oci_push_command,$*) \
174174
else \
175175
echo "Digest does not yet exist, pushing image and signing."; \
176-
$(call oci_push_command,$*); \
177-
$(call oci_sign_command,$*); \
176+
$(call oci_push_command,$*) \
177+
$(call oci_sign_command,$*) \
178178
fi
179179
endif
180180

@@ -219,4 +219,4 @@ $(oci_load_targets): oci-load-%: docker-tarball-% | kind-cluster $(NEEDS_KIND)
219219
.PHONY: $(docker_tarball_targets)
220220
$(docker_tarball_targets): oci_platforms := ""
221221
$(docker_tarball_targets): docker-tarball-%: oci-build-%
222-
cd $(image_tool_dir) && GOWORK=off $(GO) run . convert-to-docker-tar $(CURDIR)/$(oci_layout_path_$*) $(docker_tarball_path_$*) $(oci_$*_image_name_development):$(oci_$*_image_tag)
222+
cd $(image_tool_dir) && GOWORK=off $(GO) run . convert-to-docker-tar $(CURDIR)/$(oci_layout_path_$*) $(docker_tarball_path_$*) $(oci_$*_image_name_development):$(oci_$*_image_tag)

0 commit comments

Comments
 (0)