From 2d78bd1a7f589dabf13f598e6baf945eb60dd7b2 Mon Sep 17 00:00:00 2001 From: daniellga Date: Sat, 23 Mar 2024 17:51:38 -0300 Subject: [PATCH] ok2 --- .github/workflows/build_docs.yml | 3 ++- rdocs/R/main.R | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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) }