fix ps-key 24 #410
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 | |
name: quarto build | |
permissions: write-all | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ✅ Check out repository | |
uses: actions/checkout@v4 | |
- name: 🆀 Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- name: 🆀 Quarto extensions | |
shell: bash | |
run: | | |
quarto add --no-prompt quarto-ext/fontawesome | |
quarto add --no-prompt sellorm/quarto-social-embeds | |
quarto add --no-prompt r-wasm/quarto-drop | |
quarto add --no-prompt quarto-ext/pointer | |
- name: 🔧 Install R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
r-version: 'renv' | |
- name: 🔁 Install system dependencies | |
run: | | |
sudo apt-get install libcurl4-openssl-dev | |
sudo apt-get install libmagick++-dev | |
sudo apt-get install libglpk-dev | |
- name: 🔁 Install R Dependencies | |
uses: r-lib/actions/setup-renv@v2 | |
with: | |
cache-version: 1 | |
- name: 🚀 Publish to GitHub Pages (and render) | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: gh-pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # this secret is always available for github actions | |