Skip to content

Commit 461b1b2

Browse files
authored
Merge pull request #22 from similarweb/feature/change-binary-name
change binary name
2 parents 04195e7 + b25ae41 commit 461b1b2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ archives:
2828
checksum:
2929
name_template: 'checksums.txt'
3030
snapshot:
31-
name_template: "{{ .Tag }}-next"
31+
name_template: "{{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
3232
changelog:
3333
sort: asc
3434
filters:

.krew.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Plugin
33
metadata:
44
name: ipick
55
spec:
6-
version: v{{ .TagName }}
6+
version: {{ .TagName }}
77
homepage: https://github.com/similarweb/kubectl-ipick
88
shortDescription: A kubectl wrapper for interactive resource selection.
99
description: |
@@ -15,17 +15,17 @@ spec:
1515
matchLabels:
1616
os: darwin
1717
arch: amd64
18-
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/v{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName | indent 4 }}
18+
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName | indent 4 }}
1919
bin: kubectl-ipick
2020
- selector:
2121
matchLabels:
2222
os: linux
2323
arch: amd64
24-
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/v{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName | indent 4 }}
24+
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName | indent 4 }}
2525
bin: kubectl-ipick
2626
- selector:
2727
matchLabels:
2828
os: windows
2929
arch: amd64
30-
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/v{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Windows_x86_64.tar.gz" .TagName | indent 4 }}
30+
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Windows_x86_64.tar.gz" .TagName | indent 4 }}
3131
bin: kubectl-ipick.exe

0 commit comments

Comments
 (0)