Skip to content

Commit

Permalink
Merge pull request #22 from similarweb/feature/change-binary-name
Browse files Browse the repository at this point in the history
change binary name
  • Loading branch information
kaplanelad authored Jul 15, 2020
2 parents 04195e7 + b25ae41 commit 461b1b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ archives:
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
name_template: "{{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
changelog:
sort: asc
filters:
Expand Down
8 changes: 4 additions & 4 deletions .krew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Plugin
metadata:
name: ipick
spec:
version: v{{ .TagName }}
version: {{ .TagName }}
homepage: https://github.com/similarweb/kubectl-ipick
shortDescription: A kubectl wrapper for interactive resource selection.
description: |
Expand All @@ -15,17 +15,17 @@ spec:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/v{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName | indent 4 }}
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName | indent 4 }}
bin: kubectl-ipick
- selector:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/v{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName | indent 4 }}
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName | indent 4 }}
bin: kubectl-ipick
- selector:
matchLabels:
os: windows
arch: amd64
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/v{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Windows_x86_64.tar.gz" .TagName | indent 4 }}
{{addURIAndSha "https://github.com/similarweb/kubectl-ipick/releases/download/{{ .TagName }}/kubectl-ipick_{{ .TagName }}_Windows_x86_64.tar.gz" .TagName | indent 4 }}
bin: kubectl-ipick.exe

0 comments on commit 461b1b2

Please sign in to comment.