Skip to content

ci: update workflow to use latest actions and .NET 10 #20

ci: update workflow to use latest actions and .NET 10

ci: update workflow to use latest actions and .NET 10 #20

Workflow file for this run

name: MicaSetup
on:
release:
types: [created]
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- 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