Skip to content

Commit

Permalink
fix: Work around issues with renv installation
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilzyla committed Dec 5, 2023
1 parent 091f967 commit ffac3e9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/app-push-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ jobs:
with:
packages: Appsilon/rhino@${{ github.sha }}

# While renv is already installed in the previous step,
# it subsequentially fails in the pushed app (https://github.com/rstudio/renv/issues/1772).
# This step is is a workaround and can be removed once the issue is resolved.
- name: Install renv
shell: Rscript {0}
run: install.packages("renv")

- name: Checkout repository
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit ffac3e9

Please sign in to comment.