Skip to content

Commit

Permalink
try compiled formula
Browse files Browse the repository at this point in the history
  • Loading branch information
Bendzae committed Jul 27, 2024
1 parent b51aca4 commit 0e517d2
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,14 @@ jobs:

# Custom dependencies in case other formulas are needed to build the current one.
# Optional - multiline string
# depends_on: |
# "bash" => :build
depends_on: |
"rust" => :build
# "gcc"

# Custom install command for your formula.
# Required - string
install: 'bin.install "gstack" => "gs"'
install: |
system "cargo", "build", "--release", "--bin", "gstack"
bin.install "target/release/gstack"
# Custom test command for your formula so you can run `brew test`.
# Optional - string
Expand Down Expand Up @@ -74,10 +75,10 @@ jobs:
# Darwin AMD pre-existing path example: https://github.com/justintime50/myrepo/releases/download/v1.2.0/myrepo-1.2.0-darwin-amd64.tar.gz
# Linux ARM pre-existing path example: https://github.com/justintime50/myrepo/releases/download/v1.2.0/myrepo-1.2.0-linux-arm64.tar.gz
# Optional - booleans
target_darwin_amd64: false
target_darwin_arm64: true
target_linux_amd64: false
target_linux_arm64: false
# target_darwin_amd64: false
# target_darwin_arm64: true
# target_linux_amd64: false
# target_linux_arm64: false

# Update your homebrew tap's README with a table of all projects in the tap.
# This is done by pulling the information from all your formula.rb files - eg:
Expand Down

0 comments on commit 0e517d2

Please sign in to comment.