From 089fbaada1afc7c141effccb59a0d292fa22f7e1 Mon Sep 17 00:00:00 2001 From: ok-nick Date: Mon, 18 Sep 2023 00:49:33 -0400 Subject: [PATCH] fix: also cache tool-storage --- action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 32edfb6..68f25ed 100644 --- a/action.yml +++ b/action.yml @@ -72,7 +72,10 @@ runs: if: ${{ inputs.cache == 'true' }} uses: actions/cache@v3 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'))}} - name: Install tools