Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pr2tik1 committed Oct 22, 2024
1 parent 9e30c9b commit 62eaaca
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/quarto.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Quarto Publish

on:
push:
branches:
- gh-pages

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Render Quarto website
run: quarto render

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site

0 comments on commit 62eaaca

Please sign in to comment.