Skip to content

Commit 4f008de

Browse files
fix: update homebrew formula version and use proper placeholders for CI
- Bump formula version to 1.2.1 - Use clear placeholder names for SHA256 checksums - These will be replaced by CI during release workflow
1 parent 6b7a78f commit 4f008de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

homebrew/tide.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
class Tide < Formula
22
desc "🌊 An opinionated macOS maintenance orchestrator with an iocraft-powered interface"
33
homepage "https://github.com/BreathCodeFlow/tide"
4-
version "1.2.0"
4+
version "1.2.1"
55
license "MIT"
66

77
on_macos do
88
if Hardware::CPU.arm?
99
url "https://github.com/BreathCodeFlow/tide/releases/download/v#{version}/tide-aarch64-apple-darwin.tar.gz"
10-
sha256 "REPLACE_WITH_ACTUAL_SHA256_FOR_AARCH64" # aarch64
10+
sha256 "SHA256_AARCH64_PLACEHOLDER" # aarch64
1111
else
1212
url "https://github.com/BreathCodeFlow/tide/releases/download/v#{version}/tide-x86_64-apple-darwin.tar.gz"
13-
sha256 "REPLACE_WITH_ACTUAL_SHA256_FOR_X86_64" # x86_64
13+
sha256 "SHA256_X86_64_PLACEHOLDER" # x86_64
1414
end
1515
end
1616

0 commit comments

Comments
 (0)