bump version #6
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: MicaSetup | |
| on: | |
| release: | |
| types: [created] | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v2 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Setup Windows SDK | |
| uses: GuillaumeFalourd/setup-windows10-sdk-action@v1.5 | |
| - name: Install dependencies of setup | |
| run: dotnet restore src\Fischless.Relauncher\Fischless.Relauncher.csproj | |
| - name: Build setup | |
| run: dotnet build src\Fischless.Relauncher\Fischless.Relauncher.csproj --configuration Release --no-restore |