Skip to content

Commit

Permalink
cb 3.6.0
Browse files Browse the repository at this point in the history
Closes #28.

Signed-off-by: Adam Brightwell <adam.brightwell@gmail.com>
  • Loading branch information
abrightwell committed Aug 21, 2024
1 parent f0131f6 commit 421eef5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
HOMEBREW_GITHUB_API_TOKEN: ${{ github.token }}
PULL_REQUEST: ${{ github.event.pull_request.number }}
run: brew pr-pull --debug --tap=$GITHUB_REPOSITORY $PULL_REQUEST
run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST"

- name: Push commits
uses: Homebrew/actions/git-try-push@master
Expand All @@ -30,4 +30,4 @@ jobs:
if: github.event.pull_request.head.repo.fork == false
env:
BRANCH: ${{ github.event.pull_request.head.ref }}
run: git push --delete origin $BRANCH
run: git push --delete origin "$BRANCH"
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- name: Cache Homebrew Bundler RubyGems
id: cache
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
Expand Down
14 changes: 7 additions & 7 deletions Formula/cb.rb
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
class Cb < Formula
desc "CLI for Crunchy Bridge"
homepage "https://crunchybridge.com"
version "3.5.1"
version "3.6.0"
license "GPL-3.0-or-later"

if OS.mac? && Hardware::CPU.arm?
url "https://github.com/CrunchyData/bridge-cli/releases/download/v#{version}/cb-v#{version}_macos_arm64.zip"
sha256 "fa27a40de8ca7c0b44ec287437f263f851aff06a8a7f0fd7a04b0d10c6a06ff6"
sha256 "42f62809bb76232ad098bfa3d817259270830fd23fde8457f4cb6efb8a2564a3"
end

if OS.mac? && Hardware::CPU.intel?
url "https://github.com/CrunchyData/bridge-cli/releases/download/v#{version}/cb-v#{version}_macos_arm64.zip"
sha256 "1e61508df88eb77a3ff4aac1f4303285ef0b5368273de3de3233b1b8c6aeca37"
url "https://github.com/CrunchyData/bridge-cli/releases/download/v#{version}/cb-v#{version}_macos_amd64.zip"
sha256 "6fea519db4d9a0e6f432f4ee52da96c22777eaacb67f034eaa7bd4b1c98591e3"
end

if OS.linux? && Hardeware::CPU.arm? && Hardware::CPU.is_64_bit?
if OS.linux? && Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/CrunchyData/bridge-cli/releases/download/v#{version}/cb-v#{version}_linux_aarch64.zip"
sha256 "0976e629a00abbf3cc9dfe983824bd5900a1c02780fc764f272e3dd30f11a7d4"
sha256 "66d3ec655b6d6ff7bbefc545be343d7ea731138bbc1e9cbe57e1e1d105aaea7a"
end

if OS.linux? && Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
url "https://github.com/CrunchyData/bridge-cli/releases/download/v#{version}/cb-v#{version}_linux_amd64.zip"
sha256 "bf2f13a39d156ad17d6e14f0d56124f0b6be878688c4cd979bb560bfa85d8e4a"
sha256 "c5b90af19ebb91cd7f209c0ab67a749c15468df7568709873767a79fc5f42900"
end

def install
Expand Down

0 comments on commit 421eef5

Please sign in to comment.