diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index 78471dd..f3f7707 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -45,7 +45,8 @@ jobs: - name: Check for changes id: check_changes run: | - ls + git status + git config user.name git diff --exit-code if [ $? -eq 0 ]; then diff --git a/rdocs/R/main.R b/rdocs/R/main.R index 98c1766..e85529c 100644 --- a/rdocs/R/main.R +++ b/rdocs/R/main.R @@ -115,7 +115,7 @@ generate_docs <- function(files, folder_name = "docs", gh_url = "", run_examples # Create qmd files and build and render quarto project. system2(RDOCS_PATH, args = c("--files", files, "--folder-name", folder_name, "--gh-url", gh_url, run_examples)) - cat("Documentation was built.") + cat("Documentation built.") invisible(NULL) }