-
Notifications
You must be signed in to change notification settings - Fork 22
Merge in MyST Changes #511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 41 commits
Commits
Show all changes
59 commits
Select commit
Hold shift + click to select a range
1bb0752
port to mystmd
jmunroe e607cb2
Delete .github/workflows/publish-site.yaml
jmunroe c355668
docs: fix note directive
agoose77 0e2e2e7
fix: use iframe directive
agoose77 65eaa68
Update portal/index.md
agoose77 f69fa28
wip: landing page
agoose77 8c51c14
wip: more changes
agoose77 fe34147
fix: use kind
agoose77 a08e56c
fix: update CI
agoose77 d595282
Add a donate button to landing page
jmunroe fb9a4eb
Add Pangeo button off of main page
jmunroe ad1cfc7
remove incorrect button syntax
jmunroe 8316e18
Trigger rebuild
agoose77 1581809
feat: add style file
agoose77 ce95c3c
shorten button link
agoose77 661f78b
fixup! wip: landing page
agoose77 617726e
fix: update frontmatter
agoose77 78bde9a
fix: add blog posts
agoose77 2943a0a
fix: caption → alr
agoose77 6981afb
fix: drop blogpost frontmatter
agoose77 f080be6
fix: do not use ablog
agoose77 f36d671
fix: drop sphinx from environment
agoose77 c4ca8f8
fix: drop blog stub
agoose77 1bf660e
chore: remove footer templates
agoose77 491f364
chore: drop custom css & js
agoose77 d41b240
feat: add code of conduct link
agoose77 5442e9f
fix: add link to GitHub CoC
agoose77 c17c361
Merge pull request #10 from projectpythia-mystmd/agoose77/add-code-of…
agoose77 115677b
fix: add target
agoose77 efe4bda
chore: remove conf.py
agoose77 c3d6400
wip: initial commit
agoose77 d9c2901
feat: run workflow during build
agoose77 34dee11
fix: use show()
agoose77 6e1c0d2
fix: various fixes
agoose77 df7d367
fix: title
agoose77 e1ea5a2
Update portal/metrics.md
agoose77 64b3de1
Update .github/workflows/deploy.yml
agoose77 58937a0
Merge pull request #11 from projectpythia-mystmd/agoose77/chore-add-m…
jukent d4047d6
feat: fix links
agoose77 52b84d5
fix: disable warning
agoose77 fd18c45
fix: import from .io
agoose77 6c77bb9
Update myst.yml
jukent 291e056
Update myst.yml
jukent 789d8f1
merge conflicts
jukent be1fd85
rm deploy,yml
jukent ba99c4e
rm resource gallery components
jukent 1117132
Update nightly-build.yaml
jukent a03ec66
Delete .github/workflows/sphinx-link-checker.yaml
jukent 687fc38
Update trigger-delete-preview.yaml
jukent 0deda95
Delete .pre-commit-config.yaml
jukent 84fa23c
Delete .prettierrc.toml
jukent 450dcf8
Update myst.yml
jukent eaaa541
Delete portal/make.bat
jukent bdc4203
Delete portal/Makefile
jukent a9fe076
Update trigger-site-build.yaml
jukent e100ed6
Update .github/workflows/trigger-site-build.yaml
jukent 1ee187c
rm metrics actions
jukent 04408ab
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] d973de5
Merge pull request #17 from jukent/projectpythia-mystmd-main
jukent File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,57 @@ | ||
# This file was created automatically with `myst init --gh-pages` 🪄 💚 | ||
# Ensure your GitHub Pages settings for this repository are set to deploy with **GitHub Actions**. | ||
|
||
name: MyST GitHub Pages Deploy | ||
on: | ||
push: | ||
# Runs on pushes targeting the default branch | ||
branches: [main] | ||
env: | ||
# `BASE_URL` determines the website is served from, including CSS & JS assets | ||
# You may need to change this to `BASE_URL: /${{ github.event.repository.name }}` | ||
BASE_URL: '' # Not required for 'projectpythia-mystmd.github.io' domain. Other repos will need to set this! | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: 'pages' | ||
cancel-in-progress: false | ||
jobs: | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
- name: Install MyST Markdown | ||
run: npm install -g mystmd | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pip' | ||
- name: Install Python dependencies | ||
run: pip install -r requirements.txt | ||
- name: Build HTML Assets | ||
run: myst build --html --execute | ||
# Only expose secrets here | ||
env: | ||
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | ||
PRIVATE_KEY_ID: ${{ secrets.PRIVATE_KEY_ID }} | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: './_build/html' | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,30 @@ | ||
# See docs at: https://mystmd.org/guide/frontmatter | ||
version: 1 | ||
extends: | ||
- https://raw.githubusercontent.com/projectpythia-mystmd/pythia-config/main/pythia.yml | ||
project: | ||
id: 770e49e5-344a-4c46-adaa-3afb060b2085 | ||
# title: | ||
# description: | ||
keywords: [] | ||
authors: [] | ||
github: https://github.com/projectpythia-mystmd/projectpythia-mystmd.github.io | ||
jukent marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# bibliography: [] | ||
|
||
toc: | ||
- file: portal/index.md | ||
- file: portal/about.md | ||
- title: Blog | ||
children: | ||
- pattern: portal/posts/*.md | ||
- file: portal/contributing.md | ||
- file: portal/cookbook-guide.md | ||
- file: portal/metrics.md | ||
site: | ||
template: book-theme | ||
actions: | ||
- title: Learn More | ||
url: https://mystmd.org/guide | ||
domains: [] | ||
options: | ||
style: style.css |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.