Skip to content

Add CI-Installer workflow #1

Add CI-Installer workflow

Add CI-Installer workflow #1

Workflow file for this run

name: CI-Installer
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
- release/*
jobs:
windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
include-prerelease: false
- name: Build
run: dotnet build -c Release ./Installer/Installer.csproj
shell: cmd
- name: Publish
run: dotnet publish -c Release .\Installer\Installer.csproj
shell: cmd