Skip to content

Commit aa3f456

Browse files
committed
shintlive text
1 parent b9d7f37 commit aa3f456

File tree

5 files changed

+591
-0
lines changed

5 files changed

+591
-0
lines changed

.github/workflows/deploy_book.yml

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ jobs:
3939
mkdir -p ./dist/book
4040
cp -r ./src/_build/html/* ./dist/book/
4141
42+
- name: Build shinylive site
43+
run: |
44+
python -m pip install -r requirements_shiny.txt
45+
cd ~/src
46+
shinylive export shinyapp shinysite
47+
cp -r ~/src/shinysite/* ~/dist/shinylive/
48+
4249
- name: Upload artifact
4350
uses: actions/upload-pages-artifact@v3
4451
with:

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
.DS_Store
22
**/__pycache__/
3+
4+
/.quarto/
5+
_extensions/
6+
shinysite/

requirements_shiny.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shinylive

0 commit comments

Comments
 (0)