Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,6 @@ jobs:
cd docs
make quartodoc

- name: Build site
if: ${{ github.ref == 'refs/heads/main' || github.event_name == 'merge_group' || startsWith(github.head_ref, 'docs') }}
run: |
cd docs
make site

# =====================================================
# Shinylive
# =====================================================
Expand All @@ -62,19 +56,32 @@ jobs:
ref: main
path: shinylive-repo

- name: Update shinylive's copy of shiny, htmltools, and other packages
- name: Update shinylive's copy of shiny and htmltools
if: github.ref == 'refs/heads/main'
run: |
cd shinylive-repo
make submodules
make submodules-pull
make submodules-pull-shiny
make submodules-pull-htmltools

- name: Build shinylive
if: github.ref == 'refs/heads/main'
run: |
cd shinylive-repo
make all

# TODO-future; Install updated shinylive assets via updated py-shinylive pkg

# =====================================================
# Build site
# =====================================================

- name: Build site
if: ${{ github.ref == 'refs/heads/main' || github.event_name == 'merge_group' || startsWith(github.head_ref, 'docs') }}
run: |
cd docs
make site

# =====================================================
# Deploy
# =====================================================
Expand Down