Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ builds:
- darwin
goarch:
- amd64
- arm64
- "386"
env:
- CGO_ENABLED=0
Expand Down
36 changes: 36 additions & 0 deletions deploy/krew/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,42 @@ spec:
- from: LICENSE
to: "."
bin: "{{ .PluginName }}.exe"
- selector:
matchLabels:
os: linux
arch: arm64
uri: https://github.com/{{ .Owner }}/{{ .Repo }}/releases/download/v0.1.0/{{ .PluginName }}_linux_arm64.tar.gz
sha256: ""
files:
- from: "./{{ .PluginName }}"
to: "."
- from: LICENSE
to: "."
bin: "{{ .PluginName }}"
- selector:
matchLabels:
os: darwin
arch: arm64
uri: https://github.com/{{ .Owner }}/{{ .Repo }}/releases/download/v0.1.0/{{ .PluginName }}_darwin_arm64.tar.gz
sha256: ""
files:
- from: "./{{ .PluginName }}"
to: "."
- from: LICENSE
to: "."
bin: "{{ .PluginName }}"
- selector:
matchLabels:
os: windows
arch: arm64
uri: https://github.com/{{ .Owner }}/{{ .Repo }}/releases/download/v0.1.0/{{ .PluginName }}_windows_arm64.zip
sha256: ""
files:
- from: "/{{ .PluginName }}.exe"
to: "."
- from: LICENSE
to: "."
bin: "{{ .PluginName }}.exe"
shortDescription: A new plugin
homepage: https://github.com/{{ .Owner }}/{{ .Repo }}
caveats: |
Expand Down