We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
~
As discussed in astral-sh/uv#9326 currently
- name: Install uv uses: astral-sh/setup-uv@v3 with: cache-local-path: ~/.uv_cache
does not expand the ~ to /home/username and instead results in a '~' folder being created in the working directory.
/home/username
'~'
Instead it would be nice if the ~ was expanded for this path as well as the other path inputs tool-dir and tool-bin-dir.
tool-dir
tool-bin-dir
There is precedent for this in other github actions:
The text was updated successfully, but these errors were encountered:
Expand TILDE (~) in path inputs (#160)
caf0cab
Closes: #159
Successfully merging a pull request may close this issue.
As discussed in astral-sh/uv#9326 currently
does not expand the
~
to/home/username
and instead results in a'~'
folder being created in the working directory.Instead it would be nice if the
~
was expanded for this path as well as the other path inputstool-dir
andtool-bin-dir
.There is precedent for this in other github actions:
The text was updated successfully, but these errors were encountered: