From c8973825dfb41a4e19fa833c8b48417094a79597 Mon Sep 17 00:00:00 2001 From: Eden Zimbelman Date: Wed, 3 Jun 2026 20:29:18 -0700 Subject: [PATCH 1/2] docs: add Linux ARM64 download link to manual installation steps Co-Authored-By: Claude --- docs/guides/installing-the-slack-cli-for-mac-and-linux.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/guides/installing-the-slack-cli-for-mac-and-linux.md b/docs/guides/installing-the-slack-cli-for-mac-and-linux.md index 053db03d..5ed93ea0 100644 --- a/docs/guides/installing-the-slack-cli-for-mac-and-linux.md +++ b/docs/guides/installing-the-slack-cli-for-mac-and-linux.md @@ -103,7 +103,9 @@ Manual installation allows you to customize certain paths used when installing t 🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_macOS_amd64.tar.gz) -🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_64-bit.tar.gz) +🐧 💾 [**Download for Linux x86_64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_amd64.tar.gz) + +🐧 💪 [**Download for Linux ARM64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_arm64.tar.gz) **3\. Add the** `slack` **CLI to your path.** From cc6c15d9924f91942dc1a85967761c06611f0b9c Mon Sep 17 00:00:00 2001 From: Eden Zimbelman Date: Wed, 3 Jun 2026 20:45:37 -0700 Subject: [PATCH 2/2] build: update rc target with Linux ARM64 sed pattern for version bumps Co-Authored-By: Claude --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ff903c33..907e8540 100644 --- a/Makefile +++ b/Makefile @@ -90,7 +90,8 @@ rc: ./bin/slack docgen ./docs/reference --skip-update sed -i.bak -E "s#slack_cli_[0-9]+\.[0-9]+\.[0-9]+_macOS_arm64\.tar\.gz#slack_cli_$(RELEASE_VERSION)_macOS_arm64.tar.gz#" docs/guides/installing-the-slack-cli-for-mac-and-linux.md sed -i.bak -E "s#slack_cli_[0-9]+\.[0-9]+\.[0-9]+_macOS_amd64\.tar\.gz#slack_cli_$(RELEASE_VERSION)_macOS_amd64.tar.gz#" docs/guides/installing-the-slack-cli-for-mac-and-linux.md - sed -i.bak -E "s#slack_cli_[0-9]+\.[0-9]+\.[0-9]+_linux_64-bit\.tar\.gz#slack_cli_$(RELEASE_VERSION)_linux_64-bit.tar.gz#" docs/guides/installing-the-slack-cli-for-mac-and-linux.md + sed -i.bak -E "s#slack_cli_[0-9]+\.[0-9]+\.[0-9]+_linux_amd64\.tar\.gz#slack_cli_$(RELEASE_VERSION)_linux_amd64.tar.gz#" docs/guides/installing-the-slack-cli-for-mac-and-linux.md + sed -i.bak -E "s#slack_cli_[0-9]+\.[0-9]+\.[0-9]+_linux_arm64\.tar\.gz#slack_cli_$(RELEASE_VERSION)_linux_arm64.tar.gz#" docs/guides/installing-the-slack-cli-for-mac-and-linux.md sed -i.bak -E "s#slack_cli_[0-9]+\.[0-9]+\.[0-9]+_windows_64-bit\.zip#slack_cli_$(RELEASE_VERSION)_windows_64-bit.zip#" docs/guides/installing-the-slack-cli-for-windows.md sed -i.bak -E "s/Using slack v[0-9]+\.[0-9]+\.[0-9]+/Using slack v$(RELEASE_VERSION)/" docs/guides/installing-the-slack-cli-for-mac-and-linux.md sed -i.bak -E "s/Using slack v[0-9]+\.[0-9]+\.[0-9]+/Using slack v$(RELEASE_VERSION)/" docs/guides/installing-the-slack-cli-for-windows.md