Skip to content

Commit

Permalink
fix: mising Brewfile on usage for non-tebako repos
Browse files Browse the repository at this point in the history
  • Loading branch information
CAMOBAP committed Nov 12, 2024
1 parent 85712ea commit 27a053f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/actions/setup-tebako/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,11 @@ runs:
- name: Install brew packages
if: runner.os == 'macOS'
shell: bash
run: |
brew bundle
run: |
pushd $(mktemp -d)
curl https://raw.githubusercontent.com/tamatebako/tebako/refs/heads/main/Brewfile > Brewfile
brew bundle
popd
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
- name: Install pacman packages
Expand Down

0 comments on commit 27a053f

Please sign in to comment.