Skip to content

Commit

Permalink
Adding workflow to deploy to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrsch committed Nov 8, 2024
1 parent 826b698 commit 35bba8f
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/deploy-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Deploy Shiny App to GitHub Pages

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12.6"

- name: Install dependencies
run: |
python -m venv pyenv
source pyenv/bin/activate
pip install -r requirements.txt
- name: Build static Shiny app
run: |
source pyenv/bin/activate
shiny static-assets remove
shinylive export app docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
publish_branch: gh-pages
allow_empty_commit: true

0 comments on commit 35bba8f

Please sign in to comment.