Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Jupyterbook

on:
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: "3.11"
auto-activate-base: false
- name: Install Jupyterbook
shell: bash -l {0}
run: |
conda install -y -c conda-forge jupyter-book
jupyter-book build . --path-output public
- run: mv public/_build/html public_html
- run: touch public_html/.nojekyll
30 changes: 30 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Deploy

on:
push:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: "3.11"
auto-activate-base: false
- name: Install Jupyterbook
shell: bash -l {0}
run: |
conda install -y -c conda-forge jupyter-book
jupyter-book build . --path-output public
- run: mv public/_build/html public_html
- run: touch public_html/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: public_html # The folder the action should deploy.
CLEAN: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ML4MS worksop
# ML4MS workshop

See details [here](https://ml4ms.ijs.si/), and the book of abstracts [here](https://ml4ms.ijs.si/wp-content/uploads/2024/05/ML4MS_2024_Book_of_Abstracts.pdf).

Expand Down
13 changes: 13 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
title: ML4MS workshop
author: Sarath Menon

execute:
execute_notebooks : off

repository:
url : https://github.com/pyiron-workshop/ML4MS-workshop
path_to_book : ""

launch_buttons:
notebook_interface : jupyterlab
binderhub_url : https://mybinder.org
7 changes: 7 additions & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
format: jb-book
root: README
chapters:
- file: tutorial/tutorial_01.ipynb
- file: tutorial/tutorial_02.ipynb
- file: tutorial/tutorial_03.ipynb
- file: tutorial/tutorial_04.ipynb
Loading