diff --git a/cache/restore/action.yaml b/cache/restore/action.yaml index e7ee57f..c950194 100644 --- a/cache/restore/action.yaml +++ b/cache/restore/action.yaml @@ -12,9 +12,9 @@ runs: container: image: alpine volumes: - - /mnt/cache:/cache + - /mnt/cache:/mnt/cache steps: - run: | - mv "/cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" . && \ + mv "/mnt/cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" . && \ tar -xzf "archive.tar.gz" || \ echo "Cache not found" \ No newline at end of file