Skip to content

Commit 46d43f6

Browse files
committed
Init
0 parents  commit 46d43f6

File tree

9 files changed

+502
-0
lines changed

9 files changed

+502
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# SCM syntax highlighting & preventing 3-way merges
2+
pixi.lock merge=binary linguist-language=YAML linguist-generated=true
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: "Build and deploy to GitHub Pages"
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
workflow_dispatch:
7+
8+
9+
# Allow one concurrent deployment
10+
concurrency:
11+
group: "pages"
12+
cancel-in-progress: true
13+
14+
15+
jobs:
16+
build:
17+
runs-on: "ubuntu-latest"
18+
steps:
19+
- name: "Checkout"
20+
uses: "actions/checkout@v4"
21+
22+
- uses: "prefix-dev/[email protected]"
23+
24+
- run: "pixi run render"
25+
26+
- name: "Upload site artifact"
27+
uses: "actions/upload-pages-artifact@v3"
28+
with:
29+
path: "./_build/html"
30+
31+
32+
deploy:
33+
runs-on: "ubuntu-latest"
34+
needs: "build"
35+
environment:
36+
name: "github-pages"
37+
url: "${{ steps.deployment.outputs.page_url }}"
38+
permissions:
39+
pages: "write"
40+
id-token: "write"
41+
steps:
42+
- name: "Deploy to GitHub Pages"
43+
id: "deployment"
44+
uses: "actions/deploy-pages@v4"

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# MyST build outputs
2+
_build
3+
4+
# pixi environments
5+
.pixi
6+
*.egg-info

assets/styles/style.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
3+
}

csdms2025.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: "CSDMS 2025"
3+
---
4+
5+
[Visit our workshop website](https://csdms2025.workshops.geojupyter.org/)

index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
title: "GeoJupyter workshops"
3+
---

myst.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# See docs at: https://mystmd.org/guide/frontmatter
2+
version: 1
3+
4+
project:
5+
title: "GeoJupyter Workshops"
6+
description: "An index of GeoJupyter workshops"
7+
github: "geojupyter/workshops.geojupyter.org"
8+
license: "MIT"
9+
exclude:
10+
- "_*"
11+
- "README.md"
12+
# toc:
13+
# - file: "index.md"
14+
# # TODO: Use URL entries instead, once supported
15+
# # https://github.com/jupyter-book/mystmd/issues/1445
16+
17+
site:
18+
template: "book-theme"
19+
nav: []
20+
actions:
21+
- title: "View source"
22+
url: "https://github.com/geojupyter/workshops.geojupyter.org"
23+
options:
24+
folders: true
25+
style: "assets/styles/style.css"
26+
# favicon: favicon.ico
27+
# logo: site_logo.png
28+
logo_text: "GeoJupyter workshops"

0 commit comments

Comments
 (0)