From 8c4ab62825f22b54b770aae5451734bfe1470b99 Mon Sep 17 00:00:00 2001 From: Michael Costello Date: Fri, 10 Jul 2026 09:37:28 -0400 Subject: [PATCH] fix(ci): restore verified URL and symbol depends_on in cask template The homebrew-tap update step regenerates Casks/desktop.rb from this heredoc on every release, clobbering the fixes from datum-cloud/homebrew-tap#3 (verified: url, #{version} interpolation, depends_on macos: :big_sur symbol) each time a new version ships. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/bundle.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bundle.yml b/.github/workflows/bundle.yml index 16b5e94..81cd427 100644 --- a/.github/workflows/bundle.yml +++ b/.github/workflows/bundle.yml @@ -635,12 +635,13 @@ jobs: version "${VERSION}" sha256 "${DMG_SHA}" - url "https://github.com/${REPO}/releases/download/${TAG}/Datum.dmg" + url "https://github.com/${REPO}/releases/download/v#{version}/Datum.dmg", + verified: "github.com/${REPO}/" name "Datum" desc "Quickly and safely expose local environments to the internet, for free." homepage "https://www.datum.net/" - depends_on macos: ">= :big_sur" + depends_on macos: :big_sur app "Datum.app" end