adjust notebook and workflow #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Marimo Notebooks | |
on: | |
push: | |
branches: [master] | |
paths: | |
- 'data_science_tools/polars_vs_pandas.py' # Only trigger on this specific file | |
- '.github/workflows/publish-marimo.yml' # Trigger on changes to this file | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install marimo | |
# Install any other dependencies needed by your notebooks | |
pip install pandas polars | |
- name: Export marimo notebook | |
run: | | |
mkdir -p marimo_notebooks/data_science_tools/polars_vs_pandas | |
# Export the specific notebook | |
marimo export html-wasm "data_science_tools/polars_vs_pandas.py" --output marimo_notebooks/data_science_tools/polars_vs_pandas --mode edit | |
- name: 📦 Upload Pages Artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: marimo_notebooks/data_science_tools/polars_vs_pandas | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
pages: write | |
id-token: write | |
steps: | |
- name: 🌐 Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |
with: | |
artifact_name: github-pages | |
path: marimo_notebooks/data_science_tools/polars_vs_pandas |