Skip to content

feat: 🥇 homogenize buttons across the interface (#36) #24

feat: 🥇 homogenize buttons across the interface (#36)

feat: 🥇 homogenize buttons across the interface (#36) #24

Workflow file for this run

name: Deploy Shinylive App to GitHub Pages
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install shinylive
- name: Build Shinylive app
run: shinylive export . output_dir
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output_dir