Skip to content

Commit

Permalink
Add relevant params to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
magkue authored Nov 4, 2024
1 parent a5287be commit 70fbbb2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-and-test-ios-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
- uses: actions/checkout@v2

- name: Setup Ruby
run: export PATH="$HOME/.rbenv/bin:$PATH" && eval "$(rbenv init -)" && ruby --version
run: |
export PATH="$HOME/.rbenv/bin:$PATH"
export PATH="/opt/homebrew/bin:$PATH"
eval "$(rbenv init -)" && ruby --version
- name: Update Bundler
run: ruby --version && bundle update
Expand Down

0 comments on commit 70fbbb2

Please sign in to comment.