Description
Hi I'm trying to use this action in an alpine distro but I get the following error when trying to use the command after installing it.
__res_init: symbol not found


I've tried replicating it in my local environment and these are my findings.
Doing curl -LsSf https://astral.sh/uv/install.sh | sh works fine and shows the following
However, replicating the behaviour of the setup-uv action i.e. downloading directly from https://github.com/astral-sh/uv/releases/download/${UV_VERSION}/uv-x86_64-unknown-linux-gnu.tar.gz gives me the following

But, it seems that it is resolving to the wrong binary, i need the other one https://github.com/astral-sh/uv/releases/download/${UV_VERSION}/uv-x86_64-unknown-linux-musl.tar.gz


It seems like it always resolves to the gnu variant
setup-uv/src/utils/platforms.ts
Line 25 in f95cd87
Is it possible to enter an input parameter platform for the action?