From c589ff37f428b46890470b1c301f071b689d3674 Mon Sep 17 00:00:00 2001 From: Yuri Hummel Date: Tue, 20 Feb 2024 14:17:03 -0300 Subject: [PATCH 1/3] feat: add homebrew package generation to goreleaser --- .goreleaser.yaml | 8 ++++++++ README.md | 12 ++++++++---- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 68a4980..cf7d872 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -52,3 +52,11 @@ changelog: exclude: - "^docs:" - "^test:" + +brews: + - name: lsh + homepage: "https://www.latitude.sh/" + repository: + owner: latitudesh + name: homebrew-tools + diff --git a/README.md b/README.md index f100874..440fba1 100755 --- a/README.md +++ b/README.md @@ -13,11 +13,16 @@ lsh is the [Latitude.sh](http://latitude.sh/) command-line interface that will h #### MacOS / Linux / WSL - - Installing the latest version - +#### Homebrew: + + +``` +brew install latitudesh/tools/lsh +``` + +#### Instalation Script: ```bash @@ -25,7 +30,6 @@ curl -sSL https://raw.githubusercontent.com/latitudesh/lsh/main/install.sh | ba ``` - #### Windows is not supported yet. From 255e98d3c290e664b5b45452213d302cd819fe11 Mon Sep 17 00:00:00 2001 From: Yuri Hummel Date: Tue, 20 Feb 2024 14:19:45 -0300 Subject: [PATCH 2/3] chore: typo --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 440fba1..b10e02c 100755 --- a/README.md +++ b/README.md @@ -17,12 +17,11 @@ Installing the latest version #### Homebrew: - ``` brew install latitudesh/tools/lsh ``` -#### Instalation Script: +#### Installation Script: ```bash From 142c19fa7437e70a2f8174e3cd92b73dc2e30e6f Mon Sep 17 00:00:00 2001 From: Yuri Hummel Date: Tue, 20 Feb 2024 17:01:14 -0300 Subject: [PATCH 3/3] chore: update github token --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec29bb6..c2f6f2f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,4 +33,4 @@ jobs: version: latest args: release --clean env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GORELEASER_TOKEN }}