diff --git a/.github/workflows/quarto-publish.yml b/.github/workflows/quarto-publish.yml new file mode 100644 index 0000000..380fe54 --- /dev/null +++ b/.github/workflows/quarto-publish.yml @@ -0,0 +1,45 @@ +# 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 * * *' + +name: Render and Publish + +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: + 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 }}