Skip to content

Fix configuration issue with features. #6

Fix configuration issue with features.

Fix configuration issue with features. #6

Workflow file for this run

name: Deploy Demo Notebook
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code.
uses: actions/checkout@v3
- name: Check environment.
run: |
ls -ltra
python --version
pip --version
- name: Install dependencies.
run: |
pip install -r requirements.txt
- name: Build presentations.
run: |
npm install -g @marp-team/marp-cli
python scripts/marp.py
- name: Run python script.
run: |
mkdocs build
- name: Package site.
uses: actions/upload-artifact@v4
with:
name: notebook-site
path: |
site
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Download a single artifact
uses: actions/download-artifact@v4
with:
name: notebook-site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4