Skip to content

Commit

Permalink
Merge pull request #481 from sailro/ci-installer
Browse files Browse the repository at this point in the history
Add CI-Installer workflow
  • Loading branch information
sailro authored Apr 10, 2024
2 parents 87a3983 + 1457b86 commit 9801029
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ci-installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
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@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'

- name: Build
run: dotnet build -c Release ./Installer/Installer.csproj
shell: cmd

- name: Publish
run: dotnet publish -c Release ./Installer/Installer.csproj
shell: cmd

- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: Installer.exe
path: ./Installer/bin/Release/net8.0/win-x64/publish/Installer.exe

0 comments on commit 9801029

Please sign in to comment.