Skip to content

tsting web page

tsting web page #5

Workflow file for this run

name: Deploy Marimo App
on:
push:
branches: [ repo-web-page ] # Deploy when you push to your branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies from requirements.txt
run: |
pip install -r requirements.txt
- name: Export marimo app
run: |
marimo export html dashboard.py -o index.html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./