Skip to content

Create a build

Create a build #1

Workflow file for this run

name: Create a build
on: workflow_dispatch
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
7
8
- name: Publish package
run: dotnet publish src/GamesLauncher -c Release -r win-x64 --no-self-contained -o publish/
- uses: actions/upload-artifact@v4
with:
name: GamesLauncher.zip
path: publish/
if-no-files-found: error