Skip to content

Commit

Permalink
Update Preevy formula for version 0.0.60
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 14, 2024
1 parent cc7d352 commit 54aaafb
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions Formula/preevy.rb
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
# This file is automatically generated by https://github.com/heroku/cli/blob/main/scripts/release/homebrew.js
# Do not update this file directly;
# Please update the template instead:
# https://github.com/heroku/cli/blob/main/scripts/release/homebrew/templates/heroku.rb
# This file is automatically generated by https://github.com/livecycle/preevy/blob/main/packages/cli/scripts/homebrew.js
# Do not update this file directly; Please update the template instead
class Preevy < Formula
desc "Quickly deploy preview environments to your cloud provider or Kubernetes cluster"
homepage "https://preevy.dev"
url "https://releases.preevy.dev/versions/0.0.59/f2b1f88/preevy-v0.0.59-f2b1f88-darwin-x64.tar.gz"
sha256 "2edd0ed5f1ea6ef430f69d004f0bb46cce65b0833bc9593211ce203dcb25a22e"
url "https://github.com/livecycle/preevy/releases/download/v0.0.60/preevy-v0.0.60-darwin-x64.tar.gz"
sha256 "0781b5796bdac3ad88e5c6824f3d4ba973b571f3dc0b735a738a85a48ac889f6"
license "Apache-2.0"
version "0.0.59"
version "0.0.60"

Check failure on line 9 in Formula/preevy.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

FormulaAudit/ComponentsOrder: `version` (line 9) should be put before `sha256` (line 7)

on_macos do
on_arm do
url "https://releases.preevy.dev/versions/0.0.59/f2b1f88/preevy-v0.0.59-f2b1f88-darwin-arm64.tar.gz"
sha256 "2edd0ed5f1ea6ef430f69d004f0bb46cce65b0833bc9593211ce203dcb25a22e"
url "https://github.com/livecycle/preevy/releases/download/v0.0.60/preevy-v0.0.60-darwin-arm64.tar.gz"
sha256 "df4ca646e1fe283a2aba2bcc982391c4447431697f73a980944af616e359b9f1"
end
end

on_linux do
url "https://releases.preevy.dev/versions/0.0.59/f2b1f88/preevy-v0.0.59-f2b1f88-linux-x64.tar.gz"
sha256 "2edd0ed5f1ea6ef430f69d004f0bb46cce65b0833bc9593211ce203dcb25a22e"
url "https://github.com/livecycle/preevy/releases/download/v0.0.60/preevy-v0.0.60-linux-x64.tar.gz"

Check failure on line 19 in Formula/preevy.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

FormulaAudit/ComponentsOrder: `on_linux` cannot include `url`. Only `livecheck`, `keg_only`, `disable!`, `deprecate!`, `depends_on`, `conflicts_with`, `fails_with`, `resource`, `patch`, `on_intel`, `on_arm`, `on_macos`, `on_linux`, `on_system`, `on_sonoma`, `on_ventura`, `on_monterey`, `on_big_sur`, `on_catalina`, `on_mojave`, `on_high_sierra`, `on_sierra` and `on_el_capitan` are allowed.
sha256 "4924edafdb46cbdfd29ef2cfb254ef5ab86be3ae94f1302093fdd46868e920e2"

Check failure on line 20 in Formula/preevy.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

FormulaAudit/ComponentsOrder: `on_linux` cannot include `sha256`. Only `livecheck`, `keg_only`, `disable!`, `deprecate!`, `depends_on`, `conflicts_with`, `fails_with`, `resource`, `patch`, `on_intel`, `on_arm`, `on_macos`, `on_linux`, `on_system`, `on_sonoma`, `on_ventura`, `on_monterey`, `on_big_sur`, `on_catalina`, `on_mojave`, `on_high_sierra`, `on_sierra` and `on_el_capitan` are allowed.
on_arm do
url "https://github.com/livecycle/preevy/releases/download/v0.0.60/preevy-v0.0.60-linux-arm64.tar.gz"
sha256 "2b292dcbdb264d7dc06728715adbd4e56e319f333e33a0f82dbbbbfe2f17463c"
end
end

def install
inreplace "bin/preevy", /^CLIENT_HOME=/, "export PREEVY_OCLIF_CLIENT_HOME=#{lib/"client"}\nCLIENT_HOME="
inreplace "bin/preevy", /^CLIENT_HOME=/, "export PREEVY_OCLIF_CLIENT_HOME=#{lib/"client"}
CLIENT_HOME="
libexec.install Dir["*"]
bin.install_symlink libexec/"bin/preevy"
end
Expand All @@ -32,3 +35,4 @@ def install
system bin/"preevy", "version"
end
end

Check failure on line 38 in Formula/preevy.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Layout/TrailingEmptyLines: 1 trailing blank lines detected.

0 comments on commit 54aaafb

Please sign in to comment.