Skip to content

Commit

Permalink
update citation workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bcallaway11 committed Jan 31, 2025
1 parent ec957ae commit 46ff5ea
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/update-citation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,17 @@ jobs:
- name: Set up R
uses: r-lib/actions/setup-r@v2

- name: Install dependencies
- name: Install minimal system dependencies
run: |
Rscript -e 'install.packages(c("usethis", "cffr", "desc"))'
sudo apt-get update
sudo apt-get install -y \
libcurl4-openssl-dev \
libssl-dev \
libxml2-dev
- name: Install required R packages
run: |
Rscript -e 'install.packages(c("cffr", "desc"))'
- name: Update inst/CITATION
run: |
Expand Down

0 comments on commit 46ff5ea

Please sign in to comment.