Skip to content

Commit

Permalink
add quarto workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
juliagsy committed Jun 16, 2023
1 parent f57e007 commit dbe2ad2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/quarto_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build Quarto
on:
push:
branches:
- master

jobs:
build:
# Only trigger the workflow when the build_quarto flag is set
if: contains(github.event.head_commit.message, 'build_quarto')
runs-on: ubuntu-latest

steps:
- name: Render Quarto Project
uses: quarto-dev/quarto-actions/render@v2
with:
to: html

0 comments on commit dbe2ad2

Please sign in to comment.