-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (49 loc) · 1.7 KB
/
dotnet-desktop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: '**'
tags: '*'
pull_request:
branches: '**'
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build InfoPanel
run: |
dotnet restore
dotnet publish InfoPanel\InfoPanel.csproj -c Release -o "${{ github.workspace }}\InfoPanel\bin\publish\win-x64" -r win-x64 --self-contained -p:PublishReadyToRun=true
- name: Install and Compile Inno Setup Installer
shell: powershell
run: |
cd ${{ github.workspace }}\InnoSetup
iscc "setup.iss"
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: InfoPanel
path: "${{ github.workspace }}/build/"
- name: Upload Artifact Setup
uses: actions/upload-artifact@v4
with:
name: InfoPanel-Setup
path: "${{ github.workspace }}/InnoSetup/Output/InfoPanelSetup.exe"
###################################
# Everything below is only for tagged Releases
# be sure to add this to force it to be for tags only
# if: startsWith(github.ref, 'refs/tags/')
##################################
- name: Upload Release Asset
if: startsWith(github.ref, 'refs/tags/')
id: upload-release-asset
uses: ncipollo/release-action@v1
with:
artifacts: ${{ github.workspace }}/InnoSetup/Output/InfoPanelSetup.exe
generateReleaseNotes: true