From c1656165658161d6aa9da620f6af6662a72e9345 Mon Sep 17 00:00:00 2001 From: Fedor Korotkov Date: Mon, 4 Mar 2024 14:02:28 -0500 Subject: [PATCH] Store --- .github/workflows/blank.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 7537456..0d8175d 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -17,9 +17,9 @@ jobs: runs-on: ${{ matrix.runs_on }} steps: - uses: actions/checkout@v3 - - name: Cache Binary + - name: Cache Load id: cache-bin - uses: actions/cache@v4 + uses: actions/cache/restore@v4 with: path: testfile key: test-key @@ -30,3 +30,10 @@ jobs: - name: Stat Binary run: stat testfile + + - name: Cache Save + if: steps.cache-bin.outputs.cache-hit != 'true' + uses: actions/cache/save@v4 + with: + path: testfile + key: test-key