Skip to content

Merge pull request #31 from MolSSI-Education/update-theme-analytics #47

Merge pull request #31 from MolSSI-Education/update-theme-analytics

Merge pull request #31 from MolSSI-Education/update-theme-analytics #47

Workflow file for this run

name: deploy
on:
# Trigger the workflow on push to main branch
push:
branches:
- main
# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
build-and-deploy-book:
name: Build book
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Additional info about the build
shell: bash
run: |
uname -a
df -h
ulimit -a
# More info on options: https://github.com/conda-incubator/setup-miniconda
- name: Install Conda environment with Micromamba
uses: mamba-org/provision-with-micromamba@main
with:
environment-file: requirements.yaml
environment-name: iqb-2023
# Build the book
- name: Build the book
shell: bash -l {0}
run: |
jupyter-book build biochemist-python
# Deploy the book's HTML to gh-pages branch
- name: GitHub Pages action
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: biochemist-python/_build/html