From 9a0f118d38865a597a0ec555b1fa9ad197980525 Mon Sep 17 00:00:00 2001 From: Bobbie Soedirgo Date: Wed, 10 Nov 2021 20:53:05 +0800 Subject: [PATCH] fix: add linux packages to releases --- .goreleaser.yml | 9 +++++++++ README.md | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index bbb45fabb..e88272f71 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -38,3 +38,12 @@ scoop: homepage: https://supabase.io description: Supabase CLI license: MIT +nfpms: + - maintainer: Supabase + description: Supabase CLI + homepage: https://github.com/supabase/cli + license: MIT + formats: + - apk + - deb + - rpm diff --git a/README.md b/README.md index 286685b5b..bc9f86fbb 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,10 @@ scoop bucket add supabase https://github.com/supabase/scoop-bucket.git scoop install supabase/supabase ``` +#### Linux + +Linux packages are provided in [Releases](https://github.com/supabase/cli/releases). To install, download the `.apk`/`.deb`/`.rpm` file depending on your package manager and run `sudo apk add --allow-untrusted <...>.apk`/`sudo dpkg -i <...>.deb`/`sudo rpm -i <...>.rpm` respectively. + ### Run the CLI ```sh