1 Commits

Author SHA1 Message Date
451fbe1640 feat: switch homebrew distribution from cask to formula
All checks were successful
Release / release (push) Successful in 1m39s
Replace homebrew_casks with brews in goreleaser config to use
a standard Formula instead of a Cask, avoiding macOS quarantine.
2026-03-24 10:33:49 +01:00
3 changed files with 13 additions and 13 deletions

View File

@@ -46,15 +46,15 @@ release:
name_template: "v{{ .Version }}"
mode: keep-existing
homebrew_casks:
brews:
- name: gitnow
binaries:
- gitnow
repository:
owner: kjuulh
name: homebrew-tap
token: "{{ .Env.RELEASE_TOKEN }}"
url:
template: "https://git.kjuulh.io/kjuulh/gitnow/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
directory: Formula
url_template: "https://git.kjuulh.io/kjuulh/gitnow/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: "https://gitnow-client.prod.kjuulh.app"
description: "Git Now is a utility for easily navigating git projects from common upstream providers."
install: |
bin.install "gitnow"

12
Cargo.lock generated
View File

@@ -1516,9 +1516,9 @@ dependencies = [
[[package]]
name = "prost"
version = "0.14.3"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
dependencies = [
"bytes",
"prost-derive",
@@ -1526,9 +1526,9 @@ dependencies = [
[[package]]
name = "prost-derive"
version = "0.14.3"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
dependencies = [
"anyhow",
"itertools 0.14.0",
@@ -1539,9 +1539,9 @@ dependencies = [
[[package]]
name = "prost-types"
version = "0.14.3"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
dependencies = [
"prost",
]

View File

@@ -27,8 +27,8 @@ toml = "0.8.19"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "json"] }
url = "2.5.2"
dirs = "6.0.0"
prost = "0.14.0"
prost-types = "0.14.0"
prost = "0.13.2"
prost-types = "0.13.2"
bytes = "1.7.1"
nucleo-matcher = "0.3.1"
ratatui = { version = "0.29.0", features = ["termwiz"] }