fix installPkgs.R + makeChapterScripts.R #203
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: | |
pull_request: | |
types: [opened, synchronize, closed, reopened] | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
name: Quarto Publish | |
jobs: | |
build-deploy: | |
if: | | |
!contains(github.event.commits[0].message, '[skip-ci]') || | |
(github.event.pull_request.merged == true) | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pages: write | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
USERNAME: GHA | |
GOOGLE_APP_CREDENTIALS: ${{ secrets.GOOGLE_AUTHENTICATION_CREDENTIALS }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
version: 1.3.450 | |
- name: Set up R | |
uses: r-lib/actions/setup-r@v2 | |
- name: Install dependencies | |
uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
packages: | |
any::httr | |
any::knitr | |
any::quarto | |
any::rmarkdown | |
any::terra ## must be here, won't work from r setup script | |
- name: Build site 🔧 | |
run: Rscript R/renderCopyBook.R | |
- name: Publish | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: gh-pages | |
render: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |