Skip to content

Initial content

Initial content #1

Workflow file for this run

name: Build JupyterLite
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jupyterlite/action@v1
with:
contents: .
- uses: actions/upload-pages-artifact@v3
with:
path: ./_output
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- id: deployment
uses: actions/deploy-pages@v4