From ffac3e9a8559913844ad8a58974006ec28588e0a Mon Sep 17 00:00:00 2001 From: Kamil Zyla Date: Tue, 5 Dec 2023 15:57:02 +0100 Subject: [PATCH] fix: Work around issues with renv installation --- .github/workflows/app-push-test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/app-push-test.yml b/.github/workflows/app-push-test.yml index 02abb922..7c072661 100644 --- a/.github/workflows/app-push-test.yml +++ b/.github/workflows/app-push-test.yml @@ -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: