Skip to content

Commit 91d4a2d

Browse files
committed
quarto site
1 parent 22b566f commit 91d4a2d

31 files changed

+7370
-0
lines changed

.github/workflows/publish.yml

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.quarto/

_quarto.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
project:
2+
type: website
3+
4+
5+
website:
6+
title: "Spatial Data Science across Languages"
7+
navbar:
8+
repo-actions: [issue]
9+
left:
10+
- href: index.qmd
11+
text: Home
12+
- workshops.qmd
13+
- reports.qmd
14+
- governance.qmd
15+
page-footer:
16+
center:
17+
- text: "Copyright 2025, SDSL Community"
18+
right:
19+
- icon: github
20+
href: "https://github.com/spatial-data-science"
21+
format:
22+
html:
23+
theme:
24+
- cosmo
25+
css: styles.css
26+
toc: true
27+
28+
29+

0 commit comments

Comments
 (0)