Skip to content

Commit

Permalink
document #253 bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
maxheld83 committed Jun 13, 2019
1 parent 8881a34 commit 7b50da4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ghactions
Title: GitHub actions for R
Version: 0.2.1.9000
Version: 0.3.1.9000
Authors@R:
c(
person(
Expand Down
6 changes: 4 additions & 2 deletions actions/document/entrypoint.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env Rscript

message("Checking for consistency of roxygen2 with `man` ...")
loadNamespace(package = "ghactions", lib.loc = Sys.getenv("R_LIBS_ACTION"))
loadNamespace(package = "roxygen2", lib.loc = Sys.getenv("R_LIBS_ACTION"))
# TODO don't understand why brew needs to be loaded, but it has to.
# see https://github.com/r-lib/ghactions/issues/254
loadNamespace(package = "brew", lib.loc = Sys.getenv("R_LIBS_ACTION"))
loadNamespace(package = "roxygen2", lib.loc = Sys.getenv("R_LIBS_ACTION"))
loadNamespace(package = "ghactions", lib.loc = Sys.getenv("R_LIBS_ACTION"))
ghactions::document()
3 changes: 2 additions & 1 deletion actions/install-deps/entrypoint.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ path_workflow <- Sys.getenv("R_LIBS_WORKFLOW")
message("Starting dependency installation ...")
message("Loading development helper packages from 'R_LIBS_ACTION'.")

# ps needs be loaded "manually" for some reason; some of the below apparently depend on it
# TODO ps needs be loaded "manually" for some reason; some of the below apparently depend on it
# see https://github.com/r-lib/ghactions/issues/254
loadNamespace(package = "ps", lib.loc = path_action)
loadNamespace(package = "remotes", lib.loc = path_action)
loadNamespace(package = "curl", lib.loc = path_action)
Expand Down

0 comments on commit 7b50da4

Please sign in to comment.