Build the MSI (Installer) #2
This file contains hidden or 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: Build the MSI (Installer) | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build-msi: | |
| name: 🪟 Build the MSI | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: ⚙️ Setup dotnet | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 7.0.x | |
| - name: 🔨 Build the MSI | |
| run: ./msi/build.ps1 | |
| - name: 📦 Upload the MSI | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: "WSL USB Manager.msi" | |
| path: "msi/bin/Release/WSL USB Manager.msi" |