Skip to content

Merge pull request #75 from jan-janssen/alloy #7

Merge pull request #75 from jan-janssen/alloy

Merge pull request #75 from jan-janssen/alloy #7

Workflow file for this run

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