From 8c49ef6f501fbbc4eea608e6a31bea5590e6e3af Mon Sep 17 00:00:00 2001 From: Wen-Wei Tseng Date: Thu, 5 Oct 2023 21:08:37 +0800 Subject: [PATCH] fix --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a75eaf..b5a617f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,7 @@ jobs: uses: actions/cache/restore@v3 id: cache with: - path: ${{ steps.file.outputs.name }} + path: docs/${{ matrix.notebook }} key: ${{ runner.os }}-notebook-${{ hashFiles(format('docs/{0}', matrix.notebook), 'requirements.txt', 'Manifest.toml', 'src/**') }} - name: Setup Python if: ${{ steps.cache.outputs.cache-hit != 'true' }} @@ -109,7 +109,7 @@ jobs: uses: actions/cache/save@v3 if: ${{ steps.cache.outputs.cache-hit != 'true' }} with: - path: ${{ steps.file.outputs.name }} + path: docs/${{ matrix.notebook }} key: ${{ steps.cache.outputs.cache-primary-key }} - name: Upload Notebook uses: actions/upload-artifact@v3