-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (48 loc) · 1.3 KB
/
wpf.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
name: WPF Release
on:
workflow_dispatch:
push:
branches: [master]
tags:
- "*.*.*"
permissions:
contents: write
jobs:
build:
runs-on: windows-latest
env:
Solution_Name: Turnbind.sln
Wpf_Project_Directory: Turnbind/
Wpf_Project_Path: Turnbind/Turnbind.csproj
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
- name: Restore the application
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=Release
env:
Configuration: ${{ matrix.configuration }}
- name: Create the app package
run: msbuild $env:Wpf_Project_Path /p:Configuration=Release
env:
Configuration: ${{ matrix.configuration }}
- name: Archive Release
uses: thedoctor0/[email protected]
with:
type: zip
directory: ./${{ env.Wpf_Project_Directory }}/bin/Release/
filename: release.zip
- name: Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: release.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}