From d0aeeccb68e9d659581b2ceba22b9fc8f0f34b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Thu, 4 Apr 2024 14:36:04 -0700 Subject: [PATCH] github: fix github cache name --- .github/workflows/publish.yaml | 2 +- .github/workflows/tests.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 6ceccd56e..bf38cf929 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -27,7 +27,7 @@ jobs: with: # We are hashing requirements-dev.txt and requirements-extra.txt which # contain all dependencies needed to run the tests and examples. - key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }} + key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('linux-py3.10-requirements.txt) }}-${{ hashFiles('dev-requirements.txt') }} path: .venv - name: Install system packages run: sudo apt-get install -y portaudio19-dev diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 67a77c905..ca7ad24a4 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -31,7 +31,7 @@ jobs: with: # We are hashing requirements-dev.txt and requirements-extra.txt which # contain all dependencies needed to run the tests and examples. - key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }} + key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('linux-py3.10-requirements.txt) }}-${{ hashFiles('dev-requirements.txt') }} path: .venv - name: Install system packages run: sudo apt-get install -y portaudio19-dev