-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7f666b
commit 0b9f17f
Showing
167 changed files
with
9,143 additions
and
5,873 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
|
||
name: Render & Publish Site | ||
|
||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
with: | ||
version: 1.3.450 | ||
|
||
- name: Render Site | ||
run: | | ||
quarto render | ||
- name: No Jekyll | ||
run: | | ||
touch _site/.nojekyll | ||
- name: Publish | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: _site | ||
single-commit: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
# directories we often use | ||
slides | ||
notes | ||
course_materials | ||
prepare_data | ||
|
||
# local site rendering is not pushed | ||
# Quarto files | ||
/.quarto/ | ||
_site | ||
|
||
# in case RStudio is used for editing/building site | ||
# python notebooks | ||
*.ipynb | ||
|
||
# R files | ||
.Rhistory | ||
.Rproj.user | ||
.Rbuildignore | ||
.Rapp.history | ||
.RData | ||
.RDataTmp | ||
.Ruserdata | ||
.Rproj.user/ | ||
*_cache/ | ||
/cache/ | ||
*.utf8.md | ||
*.knit.md | ||
.Renviron | ||
|
||
# VS Code workspace file | ||
*.code-workspace | ||
# Jupyter cache | ||
.jupyter_cache | ||
/.luarc.json |
Oops, something went wrong.