Skip to content

Commit

Permalink
.github/workflows: Add release support to linux/arm64 platform (#541)
Browse files Browse the repository at this point in the history
Add release support to linux/arm64 platform.
Signed-off-by: Kfir Toledo <[email protected]>
  • Loading branch information
kfirtoledo authored Apr 30, 2024
1 parent e3a9413 commit 4d51eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: make push-image IMAGE_VERSION=${{ github.ref_name }}
- name: Build and compress binaries
run: |
for pair in "linux:amd64" "darwin:amd64" "darwin:arm64"; do
for pair in "linux:amd64" "linux:arm64" "darwin:amd64" "darwin:arm64"; do
IFS=':' read -r os arch <<< "$pair"
GOOS="$os" GOARCH="$arch" CGO_ENABLED=0 make cli-build BIN_DIR="$os"
tar -czvf "clusterlink-$os-$arch.tar.gz" --transform "s/$os/clusterlink/" ./"$os"
Expand Down

0 comments on commit 4d51eb6

Please sign in to comment.