diff --git a/cache/action.yaml b/cache/action.yaml index 5620be6..53f3cbb 100644 --- a/cache/action.yaml +++ b/cache/action.yaml @@ -17,7 +17,7 @@ runs: using: composite steps: - run: | - mkdir -p "/cache/$GITHUB_REPOSITORY/${{ inputs.key }}" - tar --overwrite -czf "/cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" ${{ inputs.pattern }} - echo "Created cache: /cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" + mkdir -p "/tmp/gitea/$GITHUB_REPOSITORY/${{ inputs.key }}" + tar --overwrite -czf "/tmp/gitea/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" ${{ inputs.pattern }} + echo "Created cache: /tmp/gitea/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" shell: sh