From 4630477af68a97b3b796a6d1d83ad58bc47f8e1a Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Fri, 10 Nov 2023 10:19:25 -0600 Subject: [PATCH] CI: use unique names for release caches (#1723) --- .github/workflows/release.yaml | 6 +++--- .github/workflows/tutorials.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 117b707c6..bf6298129 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,7 +22,7 @@ jobs: id: cache with: path: ${{ env.pythonLocation }} - key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }} + key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-datasets - name: Install pip dependencies if: steps.cache.outputs.cache-hit != 'true' run: | @@ -50,7 +50,7 @@ jobs: id: cache with: path: ${{ env.pythonLocation }} - key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }} + key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-integration - name: Install pip dependencies if: steps.cache.outputs.cache-hit != 'true' run: | @@ -78,7 +78,7 @@ jobs: id: cache with: path: ${{ env.pythonLocation }} - key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }} + key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-tutorials - name: Install pip dependencies if: steps.cache.outputs.cache-hit != 'true' run: | diff --git a/.github/workflows/tutorials.yaml b/.github/workflows/tutorials.yaml index 53e91bc21..b698d5137 100644 --- a/.github/workflows/tutorials.yaml +++ b/.github/workflows/tutorials.yaml @@ -26,7 +26,7 @@ jobs: id: cache with: path: ${{ env.pythonLocation }} - key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }} + key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-tutorials - name: Install pip dependencies if: steps.cache.outputs.cache-hit != 'true' run: |