From fa02bb5b74216db78b23db144c915d00c7dc48c1 Mon Sep 17 00:00:00 2001 From: koenkk Date: Tue, 1 Aug 2023 18:11:36 +0200 Subject: [PATCH] fix(ignore): Attempt to fix cache not saving --- .github/workflows/release_please.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_please.yml b/.github/workflows/release_please.yml index 983fe1d1e..4e9e3d64b 100644 --- a/.github/workflows/release_please.yml +++ b/.github/workflows/release_please.yml @@ -41,8 +41,8 @@ jobs: path: ./z2m-master ref: master - - name: Cache commit-user-lookup.json - uses: actions/cache@v3 + - name: Restore cache commit-user-lookup.json + uses: actions/cache/restore@v3 with: path: z2m/scripts/commit-user-lookup.json key: always @@ -69,6 +69,12 @@ jobs: with: name: changelog path: changelog.txt + - name: Save cache commit-user-lookup.json + uses: actions/cache/save@v3 + if: always() + with: + path: z2m/scripts/commit-user-lookup.json + key: always create_release: runs-on: ubuntu-latest