Initial commit #1
This file contains 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
name: Publish tutorials | |
on: | |
push: | |
paths: | |
- 'tutorials/*' | |
branches: | |
- 'main' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.11' | |
architecture: 'x64' | |
- name: read yaml settings gh-pages | |
id: read-yaml-gh-pages | |
uses: KJ002/read-yaml@main | |
with: | |
file: './instructor/settings.yml' | |
key-path: '["gh-pages"]' | |
- name: Install library and other requirements | |
if: | | |
steps.read-yaml-gh-pages.outputs.data == 'true' || | |
steps.read-yaml-gh-pages.outputs.data == 'True' | |
run: | | |
pip install jupyter nbconvert | |
- name: Convert notebook | |
if: | | |
steps.read-yaml-gh-pages.outputs.data == 'true' || | |
steps.read-yaml-gh-pages.outputs.data == 'True' | |
run: | | |
jupyter nbconvert --to html ./tutorials/*.ipynb | |
rm ./tutorials/*.ipynb | |
- name: Deploy 🚀 | |
if: | | |
steps.read-yaml-gh-pages.outputs.data == 'true' || | |
steps.read-yaml-gh-pages.outputs.data == 'True' | |
uses: JamesIves/github-pages-deploy-action@v4.2.5 | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: tutorials # The folder the action should deploy. | |
target-folder: tutorials | |
commit-message: build tutorials | |
clean: false | |
git-config-name: choochoo-bot | |
git-config-email: <> | |