Skip to content

Commit 5032f7f

Browse files
authored
add arm64 to be downloaded when using helm plugin install (#37)
* add arm64 to be downloaded when using helm plugin install Signed-off-by: Carlos Panato <[email protected]> * update version Signed-off-by: cpanato <[email protected]>
1 parent 64e36b6 commit 5032f7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "sigstore"
2-
version: "0.1.3"
2+
version: "0.1.4"
33
usage: "Integrates Helm into Sigstore"
44
description: |-
55
This plugin integrates Helm into the Sigstore ecosystem.

scripts/install-binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ initOS() {
6969
# verifySupported checks that the os/arch combination is supported for
7070
# binary builds.
7171
verifySupported() {
72-
supported="linux-amd64\ndarwin-amd64\nwindows-amd64"
72+
supported="linux-amd64\ndarwin-amd64\nlinux-arm64\ndarwin-arm64\nwindows-amd64"
7373
if ! echo "${supported}" | grep -q "${OS}-${ARCH}"; then
7474
echo "No prebuild binary for ${OS}-${ARCH}."
7575
exit 1

0 commit comments

Comments
 (0)