Skip to content

Render and Publish #326

Render and Publish

Render and Publish #326

# https://github.com/quarto-dev/quarto-actions/blob/main/examples/quarto-publish-example.yml
on:
push:
branches: main
schedule:
# * is a special character in YAML so you have to quote this string
# Cada dia a les 00:00
- cron: '0 0 * * *'
name: Render and Publish
permissions:
contents: write
pages: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
packages: sf, osmdata, sysfonts, showtext
# - name: Crea i omple .Renviron amb secrets accessibles des d'R
# run: |
# echo R_TELEGRAM_BOT_monitorOSM_bot="$R_TELEGRAM_BOT_MONITOROSM_BOT" >> ~/.Renviron
# echo TME_OSMCAT_CHATID="$TME_OSMCAT_CHATID" >> ~/.Renviron
# shell: bash
# env:
# R_TELEGRAM_BOT_MONITOROSM_BOT: ${{ secrets.R_TELEGRAM_BOT_MONITOROSM_BOT }}
# TME_OSMCAT_CHATID: ${{ secrets.TME_OSMCAT_CHATID}}
- name: Publish to GitHub Pages (and render)
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}