Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit b3a2144

Browse files
committed
Fixed release asset name
1 parent 2274af6 commit b3a2144

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

tools/spire/Dockerfile.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ ARG version
88

99
RUN <<EOF
1010
mkdir "${prefix}${target}/share/spire/"
11-
curl --silent --location --fail "https://github.com/spiffe/spire/releases/download/v${version}/spire-${version}-linux-x86_64-glibc.tar.gz" \
11+
curl --silent --location --fail "https://github.com/spiffe/spire/releases/download/v${version}/spire-${version}-linux-${alt_arch}-glibc.tar.gz" \
1212
| tar --extract --gzip --directory="${prefix}${target}/share/spire/" --strip-components=1 --no-same-owner
1313

14-
curl --silent --location --fail "https://github.com/spiffe/spire/releases/download/v${version}/spire-extras-${version}-linux-x86_64-glibc.tar.gz" \
14+
curl --silent --location --fail "https://github.com/spiffe/spire/releases/download/v${version}/spire-extras-${version}-linux-${alt_arch}-glibc.tar.gz" \
1515
| tar --extract --gzip --directory="${prefix}${target}/share/spire/" --strip-components=1 --no-same-owner
1616

1717
find "${prefix}${target}/share/spire/bin" -type f -executable -exec mv {} "${prefix}${target}/bin/" \;

tools/spire/manifest.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: spire
22
version: "1.6.4"
33
binary: spire-server
44
check: ${binary} --version 2>&1
5+
platforms:
6+
- linux/amd64
7+
- linux/arm64
58
tags:
69
- type/cli
710
- category/security

0 commit comments

Comments
 (0)