Skip to content

Commit

Permalink
Store
Browse files Browse the repository at this point in the history
  • Loading branch information
fkorotkov authored Mar 4, 2024
1 parent 2659067 commit c165616
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit c165616

Please sign in to comment.