Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release-kbagent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,12 @@ jobs:
run: |
docker run --rm -e VERSION homebrew/brew bash -c '
set -e
# Some homebrew/brew image builds ship HOMEBREW_REQUIRE_TAP_TRUST set, which makes
# brew refuse to load formulae from a third-party tap ("Refusing to load formula
# ... from untrusted tap"). Unset it so the smoke test can install: this is
# version-independent (the suggested `brew trust` command does not exist across all
# brew versions) and mirrors the default end-user environment where the var is unset.
unset HOMEBREW_REQUIRE_TAP_TRUST
brew tap keboola/keboola-cli2 https://github.com/keboola/homebrew-keboola-cli2
brew install keboola-cli2
kbagent --version | grep -q "${VERSION}"
Expand Down