From 9889952b296bea2a26d62e7111c933f72eefe530 Mon Sep 17 00:00:00 2001 From: Pranav Singh Date: Sun, 10 Nov 2024 16:48:21 +0530 Subject: [PATCH 1/2] fix checksum Signed-off-by: Pranav Singh --- .github/.goreleaser.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/.goreleaser.yml b/.github/.goreleaser.yml index 866e03f783..ee51127067 100644 --- a/.github/.goreleaser.yml +++ b/.github/.goreleaser.yml @@ -43,8 +43,7 @@ snapshot: name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Runtime.Goos }}_{{ .Runtime.Goarch }}" checksum: - name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS' - algorithm: sha256 + name_template: 'checksums.txt' changelog: sort: asc From 9518ae951d7f4acf49f6c2e4f411c302a06b4e5c Mon Sep 17 00:00:00 2001 From: Pranav Singh Date: Sun, 10 Nov 2024 16:49:28 +0530 Subject: [PATCH 2/2] fix use of snapshot arg Signed-off-by: Pranav Singh --- .github/.goreleaser.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/.goreleaser.yml b/.github/.goreleaser.yml index ee51127067..7311745ebf 100644 --- a/.github/.goreleaser.yml +++ b/.github/.goreleaser.yml @@ -40,7 +40,7 @@ archives: - install-binary.sh snapshot: - name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Runtime.Goos }}_{{ .Runtime.Goarch }}" + version_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Runtime.Goos }}_{{ .Runtime.Goarch }}" checksum: name_template: 'checksums.txt'