Skip to content

Commit 5ea69c2

Browse files
authored
Merge pull request #37 from jukent/myst
myst infrastructure update
2 parents 700a7d2 + d96eeff commit 5ea69c2

File tree

11 files changed

+42
-197
lines changed

11 files changed

+42
-197
lines changed

.github/workflows/nightly-build.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ jobs:
99
build:
1010
if: ${{ github.repository_owner == 'ProjectPythia' }}
1111
uses: ProjectPythia/cookbook-actions/.github/workflows/build-book.yaml@main
12-
with:
13-
environment_name: intake-cookbook-dev
12+
13+
deploy:
14+
needs: build
15+
uses: ProjectPythia/cookbook-actions/.github/workflows/deploy-book.yaml@main
1416

1517
link-check:
1618
if: ${{ github.repository_owner == 'ProjectPythia' }}
1719
uses: ProjectPythia/cookbook-actions/.github/workflows/link-checker.yaml@main
18-

.github/workflows/publish-book.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ on:
1010
jobs:
1111
build:
1212
uses: ProjectPythia/cookbook-actions/.github/workflows/build-book.yaml@main
13-
with:
14-
environment_name: intake-cookbook-dev
1513

1614
deploy:
1715
needs: build
1816
uses: ProjectPythia/cookbook-actions/.github/workflows/deploy-book.yaml@main
19-

.github/workflows/trigger-book-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ jobs:
66
build:
77
uses: ProjectPythia/cookbook-actions/.github/workflows/build-book.yaml@main
88
with:
9-
environment_name: intake-cookbook-dev
109
artifact_name: book-zip-${{ github.event.number }}
10+
base_url: '/${{ github.event.repository.name }}/_preview/${{ github.event.number }}'
1111
# Other input options are possible, see ProjectPythia/cookbook-actions/.github/workflows/build-book.yaml

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,8 @@ dmypy.json
132132

133133
#demo directory
134134
notebooks/intake-demo/
135+
136+
.vscode/
137+
138+
# MyST build outputs
139+
_build

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<img src="thumbnail.svg" alt="thumbnail" width="300"/>
2-
31
# Intake Cookbook
42

3+
<img src="thumbnail.svg" alt="thumbnail" width="300"/>
4+
55
[![nightly-build](https://github.com/ProjectPythia/intake-cookbook/actions/workflows/nightly-build.yaml/badge.svg)](https://github.com/ProjectPythia/intake-cookbook/actions/workflows/nightly-build.yaml)
66
[![Binder](https://binder.projectpythia.org/badge_logo.svg)](https://binder.projectpythia.org/v2/gh/ProjectPythia/intake-cookbook/main?labpath=notebooks)
77
[![DOI](https://zenodo.org/badge/512825541.svg)](https://zenodo.org/badge/latestdoi/512825541)

_config.yml

Lines changed: 0 additions & 82 deletions
This file was deleted.

_static/custom.css

Lines changed: 0 additions & 6 deletions
This file was deleted.

_toc.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ dependencies:
1717
- aiohttp
1818
- sphinx-pythia-theme
1919
- numpy<2
20+
- mystmd
2021
- pip:
2122
- intake-markdown

myst.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# See docs at: https://mystmd.org/guide/frontmatter
2+
version: 1
3+
extends:
4+
- https://raw.githubusercontent.com/projectpythia/pythia-config/main/pythia.yml
5+
project:
6+
title: Intake Cookbook
7+
author: James Morley
8+
copyright: '2024'
9+
# description:
10+
# keywords: []
11+
# authors: []
12+
github: https://github.com/projectpythia/intake-cookbook
13+
# To autogenerate a Table of Contents, run "myst init --write-toc"
14+
toc:
15+
# Auto-generated by `myst init --write-toc`
16+
- file: README.md
17+
- title: Notebooks
18+
children:
19+
- file: notebooks/creating_catalogs.ipynb
20+
- file: notebooks/how-to-cite.md
21+
- file: notebooks/intake_introduction.ipynb
22+
jupyter:
23+
binder:
24+
repo: projectpythia/radar-cookbook
25+
site:
26+
template: book-theme
27+
# options:
28+
# favicon: favicon.ico
29+
# logo: site_logo.png

0 commit comments

Comments
 (0)