Skip to content

Commit 2f71a69

Browse files
committed
More flexible restore.
1 parent a6addb0 commit 2f71a69

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/actions/load_conan2/action.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,4 @@ runs:
5959
- name: Restore Tarball
6060
shell: bash
6161
run: |
62-
conan cache restore ~/conan_cache_save.tgz
63-
if: ${{ ((steps.restore-cache.outputs.cache-hit == 'true') || (steps.restore-test-cache.outputs.cache-hit == 'true'))}}
64-
62+
if [ -r ~/conan_cache_save.tgz ]; then conan cache restore ~/conan_cache_save.tgz; fi

0 commit comments

Comments
 (0)