Render and Publish #659
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
# 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 1:14 | |
- cron: '14 1 * * *' | |
workflow_dispatch: | |
name: Render and Publish | |
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 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: local::. | |
- 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 }} |