-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,7 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false # Prevents GitHub token reuse | ||
|
||
persist-credentials: false | ||
- name: Set up R | ||
uses: r-lib/actions/setup-r@v2 | ||
|
||
|
@@ -26,10 +25,11 @@ jobs: | |
- name: Set up Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Find and Render README.qmd Files | ||
- name: Find and Render README.qmd Files | ||
run: | | ||
find . -name "README.qmd" | while read qmd_file; do | ||
quarto render "$qmd_file" --to markdown | ||
# quarto render "$qmd_file" --to markdown | ||
rmarkdown::render(qmd_file) | ||
done | ||
- name: Commit and Push Rendered Files | ||
|
@@ -40,11 +40,10 @@ jobs: | |
git config --local user.email "[email protected]" | ||
git add . | ||
git commit -m "Render README.qmd files to Markdown [skip ci]" || echo "No changes to commit" | ||
git fetch origin | ||
git checkout stage || git checkout -b stage | ||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git | ||
git push origin stage | ||