Do something like this:, You have this now so you probably shouldn't ignore.
cask "action-server" do
version "1.2.2"
on_macos do
on_arm do
sha256 "2c00a7bae14dc2bb023a6c2088d49f65cd47da7fa645b397d1b994f9938b5659"
url "https://github.com/joshyorko/actions/releases/download/action-server-v#{version}/action-server-macosarm64"
binary "action-server-macosarm64", target: "action-server"
end
on_intel do
sha256 "PENDING"
url "https://github.com/joshyorko/actions/releases/download/action-server-v#{version}/action-server-macos64"
binary "action-server-macos64", target: "action-server"
end
end
on_linux do
sha256 "5fbd23582d003651b617be2518fccfd4865d71a495cf376709a90f36df15c880"
url "https://github.com/joshyorko/actions/releases/download/action-server-v#{version}/action-server-linux64"
binary "action-server-linux64", target: "action-server"
end
name "Action Server"
desc " Action Server - Host AI agent actions via HTTP/MCP"
homepage "https://github.com/joshyorko/actions"
caveats <<~EOS
If 'action-server' is not found after installation, refresh your shell's cache:
hash -r
Or start a new terminal session.
Usage:
action-server --help
action-server version
EOS
end
Do something like this:, You have this now so you probably shouldn't ignore.