Skip to content

Commit 55470ae

Browse files
committed
ci: setup gh action
1 parent b16a046 commit 55470ae

File tree

3 files changed

+27
-54
lines changed

3 files changed

+27
-54
lines changed

.github/workflows/blogdown.yaml

-54
This file was deleted.

.github/workflows/quarto-render.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
on:
2+
workflow_dispatch:
3+
push:
4+
branches: [main, master]
5+
pull_request:
6+
branches: [main, master]
7+
8+
name: Quarto Render and Publish
9+
10+
jobs:
11+
build-deploy:
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
steps:
16+
- name: Check out repository
17+
uses: actions/checkout@v4
18+
19+
- name: Set up Quarto
20+
uses: quarto-dev/quarto-actions/setup@v2
21+
22+
- name: Render and Publish
23+
uses: quarto-dev/quarto-actions/publish@v2
24+
with:
25+
target: gh-pages
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.nojekyll

Whitespace-only changes.

0 commit comments

Comments
 (0)