Skip to content

Commit

Permalink
fix if
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Aug 10, 2022
1 parent 0c7b7dd commit fbfd86d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/tasks/r/github.macos.autobrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
cd arrow/r
{{ macros.pin_brew_formulae(is_fork)|indent }}
- uses: r-lib/actions/setup-r@v2
if: {{ '${{ matrix.platform }}' }} != 'macos-10.13'
if: matrix.platform != 'macos-10.13'
with:
r-version: {{ '${{ matrix.r-version }}' }}
use-public-rspm: true
- name: Setup R
if: {{ '${{ matrix.platform }}' }} == 'macos-10.13'
if: matrix.platform == 'macos-10.13'
run: |
# rig is a system utility that allows for switching
# between pre-installed R version on the self-hosted runners
Expand Down

0 comments on commit fbfd86d

Please sign in to comment.