Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellga committed Mar 23, 2024
1 parent 47d5b62 commit 5ad75de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,15 @@ jobs:
- name: Check for changes
id: check_changes
run: |
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
git config --global user.name "${GITHUB_ACTOR}"
git diff --exit-code
if [ $? -eq 0 ]; then
echo "No changes to commit."
echo "::set-output name=changes::false"
echo "No changes to commit."
echo "::set-output name=changes::false"
else
echo "::set-output name=changes::true"
echo "::set-output name=changes::true"
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 has been built.")
cat("Documentation was built.")

invisible(NULL)
}

0 comments on commit 5ad75de

Please sign in to comment.