Jul 24 #88
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
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
name: build | |
# you need these permissions to publish to GitHub pages | |
permissions: | |
contents: write | |
pages: write | |
jobs: | |
CICD: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
fetch-depth: 0 | |
- name: Provide Fonts | |
run: | | |
mkdir /usr/share/fonts/Atkinson_Hyperlegible | |
cp -r fonts/ /usr/share/fonts/Atkinson_Hyperlegible/ | |
fc-cache -fv | |
- name: Check commit message | |
id: check_commit_message | |
run: | | |
COMMIT_MSG=$(git log -1 --pretty=%B) | |
echo "Commit_MSG: ${COMMIT_MSG}" | |
if [[ "$COMMIT_MSG" != "Render HOAD"* ]]; then | |
echo "Commit message does not start with 'Render HOAD'." | |
echo "result=0" >> $GITHUB_ENV | |
else | |
echo "result=1" >> $GITHUB_ENV | |
fi | |
- uses: quarto-dev/quarto-actions/setup@v2 | |
- run: | | |
quarto --version | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
- name: Create dashboard documents | |
if: env.result == '1' | |
run: | | |
source("create_qmd.R") | |
shell: Rscript {0} | |
- name: Preview - Render and Publish | |
if: env.result == '1' | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: netlify | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
- name: Commit rendered dashboard documents | |
if: env.result == '1' | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add docs/ | |
git commit -m "Auto-update of the HOAD" | |
git push origin ${{ github.head_ref }} | |
- name: Create Pull Request for docs folder | |
id: cpr | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: "Updated docs folder" | |
branch: update-docs-folder | |
branch-suffix: timestamp | |
base: gh-pages | |
title: 'Automatic PR to update docs folder' | |
body: 'This is an auto-generated PR with the updates to the docs folder.' | |
labels: 'website, automated pr' | |