Skip to content

Commit

Permalink
Add CI-Installer workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sailro committed Apr 10, 2024
1 parent 87a3983 commit 7bb8455
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci-installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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

0 comments on commit 7bb8455

Please sign in to comment.