Skip to content

Commit

Permalink
aiai
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellga committed Mar 23, 2024
1 parent 11205cd commit 29de86a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,12 @@ jobs:
- name: Check for changes
id: check_changes
run: |
ls
cd docs
ls
if [[ -n $(git status --porcelain) ]]; then
echo "changes=true" >> "$GITHUB_OUTPUT";
echo entrou
echo "changes=true" >> "$GITHUB_OUTPUT"
fi
- name: Commit and push changes
Expand Down
2 changes: 1 addition & 1 deletion rdocs/R/main.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

0 comments on commit 29de86a

Please sign in to comment.