Skip to content

Commit

Permalink
Test Github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
okatsn committed Sep 23, 2024
1 parent c4ed0f2 commit 36c4c45
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Deploy Quarto Website

on:
push:
# branches:
# - main

jobs:
build-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

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

- name: Render Quarto site
run: quarto render

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

0 comments on commit 36c4c45

Please sign in to comment.