-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: explicity reinstall bslib to a stable old version after all the …
…update is done
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,7 +136,7 @@ jobs: | |
lockfile <- renv::lockfile_read() | ||
pkg_name_structure <- ifelse("${{ matrix.channel }}" == "stable", "%s/%s@*release", "%s/%s") | ||
for (package in lockfile$Packages) { | ||
if (package$Source == "GitHub" && package$Package != "bslib") { # TODO: After teal.slice is released we can start updating bslib too | ||
if (package$Source == "GitHub") { | ||
renv::record(sprintf(pkg_name_structure, package$RemoteUsername, package$Package)) | ||
} | ||
} | ||
|
@@ -150,6 +150,7 @@ jobs: | |
github_pkgs <- names(lockfile_pkgs)[sapply(lockfile_pkgs, function(x) x$Source == "GitHub")] | ||
renv::restore(clean = TRUE) | ||
renv::update(exclude = github_pkgs) | ||
renv::install('[email protected]') # TODO: After teal.slice is released we can start updating bslib too | ||
renv::snapshot() | ||
- name: Print the new renv.lock file for ${{ matrix.directory }} | ||
|