Skip to content

Merge pull request #68 from nhs-r-community/add-render-gh-action #18

Merge pull request #68 from nhs-r-community/add-render-gh-action

Merge pull request #68 from nhs-r-community/add-render-gh-action #18

on:
workflow_dispatch:
push:
branches: main
name: Render Quarto Project
uses: quarto-dev/quarto-actions/render@v2

Check failure on line 7 in .github/workflows/quarto-publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/quarto-publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
with:
to: html # If set, it will be equivalent to `quarto render --to html`
path: source-folder # By default, the current working dir is used i.e `quarto render .`
name: Quarto Publish
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-renv@v2
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}