Determine windows locale for installing in fedora #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: WSL Install | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Fedora | |
run: | | |
.\setup.ps1 -UserName GitHub -Password GitHub | |
wsl --distribution Fedora --user GitHub --exec /bin/bash -c "echo 'Hello from Fedora'" |