generated from stho32/BP001-ProjectTemplate-CSharp
-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (57 loc) · 2.13 KB
/
dotnet.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
60
61
62
63
64
65
66
67
68
69
70
name: build
on:
push:
env:
DOTNET_VERSION: "7.x.x" # The .NET SDK version to use
SOLUTION_DIR: "VisualPairCoding"
PROJECT: "./VisualPairCoding.AvaloniaUI/VisualPairCoding.AvaloniaUI.csproj"
RELEASEPREFIX: "VisualPairCoding"
jobs:
build:
name: build-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
include:
- os: macos-latest
RUNTIMEID: osx-x64
OUTPUTDIR: VisualPairCoding-osx-x64
- os: windows-latest
RUNTIMEID: win-x64
OUTPUTDIR: VisualPairCoding-win-x64
- os: ubuntu-latest
RUNTIMEID: linux-x64
OUTPUTDIR: VisualPairCoding-linux-x64
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
working-directory: Source/${{ env.SOLUTION_DIR }}
- name: Set version number
run: ./Set-Version-Number.ps1 "${{github.ref}}"
working-directory: Scripts
shell: pwsh
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: Source/${{ env.SOLUTION_DIR }}
- name: Test + Cover
run: dotnet test
working-directory: Source/${{ env.SOLUTION_DIR }}
- name: Publish
run: dotnet publish ${{ env.PROJECT }} -c Release -o ${{matrix.OUTPUTDIR}} -p:PublishReadyToRun=true --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:UseAppHost=true -r ${{matrix.RUNTIMEID}}
working-directory: Source/${{ env.SOLUTION_DIR }}
- uses: vimtor/action-zip@v1
with:
files: ./Source/${{ env.SOLUTION_DIR }}/${{matrix.OUTPUTDIR}}/
dest: ${{ env.SOLUTION_DIR }}/${{matrix.OUTPUTDIR}}.zip
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
${{ env.SOLUTION_DIR }}/${{matrix.OUTPUTDIR}}.zip