Skip to content

Commit

Permalink
ci: renamed ockam_app cask to ockam-app
Browse files Browse the repository at this point in the history
  • Loading branch information
davide-baldo committed Sep 13, 2023
1 parent 1c15c87 commit 3e72dd1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/ockam_app.rb.template
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
cask "ockam_app" do
cask "ockam-app" do
version "release_tag"
name "Ockam App"
name "Ockam"
desc "End-to-end encryption and mutual authentication for distributed applications"
homepage "https://github.com/build-trust/ockam"

if Hardware::CPU.arm?
url "https://github.com/build-trust/ockam/releases/download/release_tag/Ockam_App_aarch64-apple-darwin.dmg"
sha256 "Ockam_App_aarch64-apple-darwin.dmg_sha256_value"
url "https://github.com/build-trust/ockam/releases/download/release_tag/ockam.app.aarch64-apple-darwin.dmg"
sha256 "ockam.app.aarch64-apple-darwin.dmg_sha256_value"
end

if Hardware::CPU.intel?
url "https://github.com/build-trust/ockam/releases/download/release_tag/Ockam_App_x86_64-apple-darwin.dmg"
sha256 "Ockam_App_x86_64-apple-darwin.dmg_sha256_value"
url "https://github.com/build-trust/ockam/releases/download/release_tag/ockam.app.x86_64-apple-darwin.dmg"
sha256 "ockam.app.x86_64-apple-darwin.dmg_sha256_value"
end

depends_on formula: "ockam"
app "Ockam App.app"
app "Ockam.app"
uninstall quit: "io.ockam.app"
end

0 comments on commit 3e72dd1

Please sign in to comment.