Skip to content

Commit

Permalink
Install libcurl4-openssl-dev in GH Action (#1)
Browse files Browse the repository at this point in the history
* Install libcurl4-openssl-dev in GH Action

* Install additional Ubuntu libraries

* Run workflow on dispatch or push only
  • Loading branch information
NeuroShepherd authored Mar 18, 2024
1 parent 95b5c97 commit fd08f9f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ on:
workflow_dispatch:
push:
branches: main
pull_request:
branches: main


name: Quarto Publish

Expand All @@ -15,6 +14,12 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Install libcurl4-openssl-dev
run: sudo apt-get install -y libcurl4-openssl-dev

- name: Install libharfbuzz-dev libfribidi-dev libtiff5-dev
run: sudo apt install libharfbuzz-dev libfribidi-dev libtiff5-dev

- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-renv@v2
Expand All @@ -29,4 +34,4 @@ jobs:
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit fd08f9f

Please sign in to comment.