From 6f17151296960cf72e9a21cbda4475a1830179a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Choutri?= Date: Tue, 25 Jun 2024 12:36:26 +0200 Subject: [PATCH] Fix the path to the macOS arm64 pre-release --- .github/workflows/process-binaries.sh | 2 ++ README.md | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/process-binaries.sh b/.github/workflows/process-binaries.sh index f3f4211..54b3222 100755 --- a/.github/workflows/process-binaries.sh +++ b/.github/workflows/process-binaries.sh @@ -2,6 +2,8 @@ CONFER_EXEC=$(cabal list-bin --project-file=cabal.release.project confer:exe:confer) +ldd $CONFER_EXEC + case "$(uname -s)" in Linux*) strip $CONFER_EXEC && upx -9 $CONFER_EXEC;; Darwin*) strip $CONFER_EXEC;; diff --git a/README.md b/README.md index 30709b6..9a9f354 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,8 @@ For more details about the inner workings, read the [Architecture document](./do Pre-release binaries are available for the following platforms: -* [x86_64-linux](https://github.com/tchoutri/confer/releases/download/confer-head/confer-head-Linux-static-x86_64.tar.gz) +* [Linux-x86_64](https://github.com/tchoutri/confer/releases/download/confer-head/confer-head-Linux-static-x86_64.tar.gz) +* [macOS-arm64](https://github.com/tchoutri/confer/releases/download/confer-head/confer-head-macOS-arm64.tar.gz) ## 🔧 Build