mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +00:00
fix: also cache tool-storage
This commit is contained in:
parent
5185e135bf
commit
089fbaada1
1 changed files with 4 additions and 1 deletions
|
@ -72,7 +72,10 @@ runs:
|
||||||
if: ${{ inputs.cache == 'true' }}
|
if: ${{ inputs.cache == 'true' }}
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ~/.aftman/bin
|
path: |
|
||||||
|
~/.aftman/bin
|
||||||
|
~/.aftman/tool-storage
|
||||||
|
# TODO: also hash ~/.aftman/aftman.toml
|
||||||
key: ${{ runner.os }}-aftman-${{hashFiles(format('{0}/{1}', inputs.path, 'aftman.toml'))}}
|
key: ${{ runner.os }}-aftman-${{hashFiles(format('{0}/{1}', inputs.path, 'aftman.toml'))}}
|
||||||
|
|
||||||
- name: Install tools
|
- name: Install tools
|
||||||
|
|
Loading…
Reference in a new issue