ci: update thumbs (#20) #56
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
on: | |
push: | |
branches: main | |
workflow_dispatch: | |
name: Quarto Publish | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: r-lib/actions/setup-r@v2 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
packages: | | |
sysfonts | |
ggplot2 | |
ggtext | |
showtext | |
knitr | |
webshot2 | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- name: Render and Publish | |
run: | | |
[ -d index ] || mkdir index | |
if grep -E "^index/$" .gitignore ; then | |
echo "index already in .gitignore" | |
else | |
echo "Add index to .gitignore" | |
echo "\nindex/" >> .gitignore | |
fi | |
cd index | |
quarto use template --no-prompt ${{ github.repository }} | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
git config --global user.name "${{ github.actor }}" | |
quarto publish gh-pages index.qmd | |
cd .. | |
Rscript -e "webshot2::webshot(url = \"index/index.html\", file = \"template.png\", vwidth = 1920, vheight = 1080)" | |
rm -rf index | |
# git add template.png | |
# git commit -m "ci: update thumbs" || echo "No changes to commit" | |
# git push origin || echo "No changes to commit" | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
add-paths: template.png | |
commit-message: "ci: update thumbs" | |
signoff: false | |
branch: ci/latest-quarto-updates | |
delete-branch: true | |
title: "ci: update thumbs" | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
committer: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
- name: Render and Publish | |
if: ${{ false }} | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: gh-pages | |
path: template.qmd |