Skip to content

Merge pull request #4 from martinRenou/add_lite #5

Merge pull request #4 from martinRenou/add_lite

Merge pull request #4 from martinRenou/add_lite #5

Workflow file for this run

name: Deploy Slides to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Install mamba
uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.5.8-0'
environment-file: build-environment.yml
cache-environment: true
- name: Install dependencies
shell: bash -l {0}
run: npm ci
- name: Build slides
shell: bash -l {0}
run: npm run build
- name: Build the JupyterLite site
shell: bash -l {0}
run: jupyter lite build --contents litecontent --output-dir dist/lite
- name: Upload build output
uses: actions/upload-pages-artifact@v3
with:
path: dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4