Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,21 @@ jobs:
- name: Install the dependencies
run: |
python -m pip install -r requirements.txt
- name: Install micromamba
run: |
curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba
sudo mv bin/micromamba /usr/local/bin/micromamba
micromamba --version

- name: Build the JupyterLite site
run: |
# jupyter lite build --files content
jupyter lite build --contents content --output-dir dist

- name: Upload (dist)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jupyterlite-demo dist ${{ github.run_number }}
name: jupyterlite-demo-dist-${{ github.run_number }}
# path: ./_output
path: ./dist

Expand All @@ -39,10 +45,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.1
- uses: actions/download-artifact@v3
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: jupyterlite-demo dist ${{ github.run_number }}
name: jupyterlite-demo-dist-${{ github.run_number }}
path: ./dist

- name: Deploy
Expand Down