Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions .github/workflows/release-please.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions .release-please-config.json

This file was deleted.

3 changes: 0 additions & 3 deletions .release-please-manifest.json

This file was deleted.

2 changes: 1 addition & 1 deletion Formula/linear-cli/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
1.4.0
1 change: 0 additions & 1 deletion Formula/linear-cli/CHANGELOG.md

This file was deleted.

11 changes: 9 additions & 2 deletions Formula/linear-cli/linear-cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,23 @@ class LinearCli < Formula
homepage "https://github.com/rubyists/linear-cli"
license "WTFPL"

# The one place the version lives - rubyists/linear-cli's own
# homebrew-tap-bump workflow job writes this file directly to mirror
# that repo's release tag exactly. Everything below interpolates from
# it rather than repeating the version in each url, so there's nothing
# else to keep in sync by hand.
version File.read(File.expand_path(".version", __dir__)).chomp

on_macos do
on_arm do
url "https://github.com/rubyists/linear-cli/releases/download/v1.4.0/lc_macos_aarch64.tar.gz"
url "https://github.com/rubyists/linear-cli/releases/download/v#{version}/lc_macos_aarch64.tar.gz"
sha256 "7f63650ec3180ea8fea4ce797a59fbfc2a462f50e070ebee778ec2a0fb7c9e0e"
end
end

on_linux do
on_intel do
url "https://github.com/rubyists/linear-cli/releases/download/v1.4.0/lc_linux_x86_64.tar.gz"
url "https://github.com/rubyists/linear-cli/releases/download/v#{version}/lc_linux_x86_64.tar.gz"
sha256 "2ab8355940245cbf6bd7fb77ea5d89e2c39cdf80de5127b371698de99a01180e"
end
end
Expand Down