Replies: 1 comment 3 replies
-
|
~/.cloud-init/*.user-data Look it up |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The
windows-2025GitHub actions runner image preview does not yet have WSL installed properly.So to make my setup-wsl action compatible, I need to first execute
wsl --install --no-distribution.My action uses
@actions/execto do the necessary tool executions.The problem is, that calling
wsl --installfrom an interactive shell works perfectly fine.But if I do it via
@actions/execit behaves like if called usingecho | wsl --installwhich refuses to do its work but just says WSL is not installed yet.How can
wsl --installbe called non-interactively?Beta Was this translation helpful? Give feedback.
All reactions