Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

temporal 0.12.0 #170352

Merged
merged 2 commits into from
Apr 29, 2024
Merged
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions Formula/t/temporal.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Temporal < Formula
desc "Command-line interface for running and interacting with Temporal Server and UI"
homepage "https://temporal.io/"
url "https://github.com/temporalio/cli/archive/refs/tags/v0.11.0.tar.gz"
sha256 "9cc4e80254e95a3b456e7d605b518c1a3e4d62b92a08a05efd6cf897ce4b2f3e"
url "https://github.com/temporalio/cli/archive/refs/tags/v0.12.0.tar.gz"
sha256 "eada525bab531952b84bd78ba9631e1eaed64eba9860fd61ea1e874d454e6d30"
license "MIT"
head "https://github.com/temporalio/cli.git", branch: "main"

Expand All @@ -19,9 +19,9 @@ class Temporal < Formula
depends_on "go" => :build

def install
ldflags = "-s -w -X github.com/temporalio/cli/headers.Version=#{version}"
ldflags = "-s -w -X github.com/temporalio/cli/temporalcli.Version=#{version}"
system "go", "build", *std_go_args(ldflags:), "./cmd/temporal"
generate_completions_from_executable(bin/"temporal", "completion", shells: [:bash, :zsh])
generate_completions_from_executable bin/"temporal", "completion"
end

test do
Expand Down
Loading