Skip to content

switch to miniconda in CI (#36) #54

switch to miniconda in CI (#36)

switch to miniconda in CI (#36) #54

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
- uses: conda-incubator/setup-miniconda@v3
with:

Check failure on line 28 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
activate-environment: biochemist-python
environment-file: requirements.yaml
# 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