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

sidekick 0.5.3 (new formula) #191345

Merged
merged 2 commits into from
Sep 21, 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
19 changes: 19 additions & 0 deletions Formula/s/sidekick.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
class Sidekick < Formula
desc "Deploy applications to your VPS"
homepage "https://github.com/MightyMoud/sidekick"
url "https://github.com/MightyMoud/sidekick/archive/refs/tags/v0.5.3.tar.gz"
sha256 "11c6f23c67c122ec6e1e0fa4cd7119f7e044186abe810e08ea97708bb78e0a33"
license "GPL-3.0-only"

depends_on "go" => :build

def install
system "go", "build", *std_go_args(ldflags: "-s -w")
end

test do
assert_match "With sidekick you can deploy any number of applications to a single VPS",
shell_output(bin/"sidekick")
assert_match("Sidekick config not found - Run sidekick init", shell_output("#{bin}/sidekick compose", 1))
end
end
Loading