From a74c8cef66a925d1c6022c24ba47e42143e13dce Mon Sep 17 00:00:00 2001 From: Julian Skinner Date: Fri, 29 Sep 2023 21:23:13 -0500 Subject: [PATCH] ci: update deploy-sites job to restore sage-lib-build cache --- .github/workflows/release-deploy-v2.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release-deploy-v2.yml b/.github/workflows/release-deploy-v2.yml index b7b07b2d9d..a214e7501c 100644 --- a/.github/workflows/release-deploy-v2.yml +++ b/.github/workflows/release-deploy-v2.yml @@ -243,6 +243,17 @@ jobs: with: node-version: 16.20.0 + - name: Restore Build assets + uses: actions/cache/restore@v3 + id: restore-sage-lib-build-assets + env: + cache-name: sage-lib-build-assets + with: + path: | + 'packages/**' + 'docs/**' + key: ${{ runner.os }}-build-${{ env.cache-name }} + - name: Deploy Documentation Site env: HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}