From a1fecf3bc8967202f95dd611eb9177a4297cb6da Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Thu, 23 May 2024 13:09:49 -0400 Subject: [PATCH 1/2] Only update the shiny submodule when making the docs https://github.com/posit-dev/shinylive/blob/144a5de66cc198044c918df9d786e92804d9ff25/Makefile#L94C4-L94C20 --- .github/workflows/build-docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml index c0fd21804..ddaa3e902 100644 --- a/.github/workflows/build-docs.yaml +++ b/.github/workflows/build-docs.yaml @@ -67,7 +67,7 @@ jobs: run: | cd shinylive-repo make submodules - make submodules-pull + make submodules-pull-shiny - name: Build shinylive if: github.ref == 'refs/heads/main' From 07a7682387c36c232ae36b65d57209a8ea64b39c Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Thu, 23 May 2024 13:19:38 -0400 Subject: [PATCH 2/2] Update step name and add make command for pulling latest for htmltools --- .github/workflows/build-docs.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml index ddaa3e902..4ac44e5f3 100644 --- a/.github/workflows/build-docs.yaml +++ b/.github/workflows/build-docs.yaml @@ -62,12 +62,13 @@ 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-shiny + make submodules-pull-htmltools - name: Build shinylive if: github.ref == 'refs/heads/main'