From 8ff11e1f747d05f18a6e509e66ecfcee5191f1f0 Mon Sep 17 00:00:00 2001 From: Djuri Baars Date: Sun, 9 Jun 2024 15:15:52 +0200 Subject: [PATCH] Missing slash? --- .github/workflows/build_artifacts.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_artifacts.yaml b/.github/workflows/build_artifacts.yaml index 6fc7d06..73a0f41 100644 --- a/.github/workflows/build_artifacts.yaml +++ b/.github/workflows/build_artifacts.yaml @@ -29,14 +29,14 @@ jobs: id: pip-cache uses: actions/cache@v4 with: - path: /tmp/.cachepip + path: /tmp/cachepip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Run Docker Container run: | docker run --rm \ - --volume "/tmp/.cachepip:/wine/drive_c/users/root/appdata/local/pip/cache" \ + --volume "/tmp/cachepip:/wine/drive_c/users/root/appdata/local/pip/cache/" \ --volume "${{ github.workspace }}:/src/" \ batonogov/pyinstaller-windows:latest - name: Archive artifacts