Skip to content
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
13 changes: 11 additions & 2 deletions Formula/c/coder.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
class Coder < Formula
desc "Tool for provisioning self-hosted development environments with Terraform"
homepage "https://coder.com"
url "https://github.com/coder/coder/archive/refs/tags/v2.28.6.tar.gz"
sha256 "294e8f3d0b8bfa2ada25ddbc7cb5cdb479d0293459bbc2b60b28fb76795108b8"
license "AGPL-3.0-only"
head "https://github.com/coder/coder.git", branch: "main"

stable do
url "https://github.com/coder/coder/archive/refs/tags/v2.28.6.tar.gz"
sha256 "294e8f3d0b8bfa2ada25ddbc7cb5cdb479d0293459bbc2b60b28fb76795108b8"

# fix invalid pseudo-version issue for `coder/boundary`, upstream pr ref, https://github.com/coder/coder/pull/21290
patch do
url "https://github.com/coder/coder/commit/b690c3e90b42b1c6c81899a603789d309e64aafb.patch?full_index=1"
sha256 "09734d19299872eac2fa10bb45eca619a66455817e9ebf45f09a484f3218b864"
end
end

# There can be a notable gap between when a version is tagged and a
# corresponding release is created, so we check the "latest" release instead
# of the Git tags.
Expand Down
Loading