Skip to content

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #4

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #4

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install the dependencies
working-directory: ./jupyterlite
run: |
python -m pip install -r requirements.txt
- name: Build the JupyterLite site
working-directory: ./jupyterlite
run: |
cp README.md content
jupyter lite build --contents content
- name: Upload (dist)
uses: actions/upload-artifact@v2
with:
name: jupyterlite-demo-dist-${{ github.run_number }}
path: ./jupyterlite/_output
deploy:
if: github.ref == 'refs/heads/main'
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- uses: actions/[email protected]
with:
name: jupyterlite-demo-dist-${{ github.run_number }}
path: ./jupyterlite/dist
- name: Deploy
if: github.ref == 'refs/heads/main'
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./jupyterlite/dist