From 50c5986c3e0fff6eb2aa2281409e6a1a10216d4e Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 9 Feb 2024 15:08:16 -0500 Subject: [PATCH] actions: fix Windows cache --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 45cfa498..cbdfa14f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -113,7 +113,7 @@ jobs: with: path: | cache.tar.xz - key: gam-${{ matrix.jid }}-20240209 + key: gam-${{ matrix.jid }}-20240209a - name: Untar Cache archive if: matrix.goal == 'build' && steps.cache-python-ssl.outputs.cache-hit == 'true' @@ -840,11 +840,11 @@ jobs: working-directory: ${{ github.workspace }} run: | if [[ "${RUNNER_OS}" == "Windows" ]]; then - tar_folder="src/cpython/" + tar_folders="src/cpython/ bin/ssl" else - tar_folder="bin/" + tar_folders="bin/" fi - tar cJvvf cache.tar.xz "$tar_folder" + tar cJvvf cache.tar.xz $tar_folders publish: if: github.event_name == 'push'