-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add version 0.38.0 to homebrew post release
Signed-off-by: Jade Carino <[email protected]>
- Loading branch information
1 parent
e82f640
commit 6179e94
Showing
3 changed files
with
29 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
cask "[email protected]" do | ||
arch arm: "arm64", intel: "x86-64" | ||
|
||
Check failure on line 3 in Casks/g/[email protected] GitHub Actions / test-bot (ubuntu-22.04)
Check failure on line 3 in Casks/g/[email protected] GitHub Actions / test-bot (ubuntu-22.04)
|
||
version "0.38.0" | ||
# Create the sha256 using shasum --algorithm 256 <file> | ||
sha256 arm: "9197b02b7c232791900cbad5bed49f30a1f6e2154259e692416c8787d24a9d31", | ||
intel: "66d49325c4494c0585b734b070ca917e7da29c036b99348b754b435b66e134e3" | ||
|
||
url "https://github.com/galasa-dev/cli/releases/download/v#{version}/galasactl-darwin-#{arch}", | ||
verified: "github.com/galasa-dev/cli/releases/" | ||
name "Galasa Client" | ||
desc "Client to interact with the Galasa ecosystem or local development environment. Version 0.38.0." | ||
Check failure on line 12 in Casks/g/[email protected] GitHub Actions / test-bot (ubuntu-22.04)
Check failure on line 12 in Casks/g/[email protected] GitHub Actions / test-bot (ubuntu-22.04)
|
||
homepage "https://galasa.dev/" | ||
|
||
livecheck do | ||
url :url | ||
strategy :github_latest | ||
end | ||
|
||
binary "galasactl-darwin-#{arch}", target: "galasactl" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ brew install --no-quarantine [email protected] | |
``` | ||
for example | ||
``` | ||
brew install --no-quarantine galasactl@0.37.0 | ||
brew install --no-quarantine galasactl@0.38.0 | ||
``` | ||
|
||
At the moment the --no-quarantine is required because otherwise its not possible to run the galasactl. See documentation about this at | ||
|
@@ -31,7 +31,7 @@ Use the helper script `add-version.sh` | |
|
||
For example: | ||
```bash | ||
./add-version.sh --version 0.37.0 | ||
./add-version.sh --version 0.38.0 | ||
``` | ||
|
||
The file Cask/g/galasactl.rb will be updated with that version, so people can get that as the latest version. | ||
|