Skip to content

Commit

Permalink
Include setting up protobuffers into the rhub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sjentsch committed May 22, 2024
1 parent 86a7f44 commit af23550
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/rhub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ on:
config:
description: 'A comma separated list of R-hub platforms to use.'
type: string
default: 'linux,windows,macos'
default: 'linux,windows,macos,macos-arm64'
name:
description: 'Run name. You can leave this empty now.'
description: 'rhub'
type: string
id:
description: 'Unique ID. You can leave this empty now.'
Expand All @@ -33,6 +33,10 @@ jobs:

steps:
# NO NEED TO CHECKOUT HERE
- name: Install protobuf headers
if: runner.os == 'Linux'
run: sudo apt update -y && sudo apt install -y protobuf-compiler libprotobuf-dev libprotoc-dev

- uses: r-hub/actions/setup@v1
with:
config: ${{ github.event.inputs.config }}
Expand Down

0 comments on commit af23550

Please sign in to comment.