Skip to content

.NET 8.0

.NET 8.0 #32

Workflow file for this run

name: .NET 8.0
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore Launcher.csproj
- name: Publish
run: dotnet publish Launcher.csproj
- name: Archive Artifacts
uses: actions/[email protected]
with:
name: Launcher
path: Launcher.exe