-
Notifications
You must be signed in to change notification settings - Fork 16
72 lines (54 loc) · 2.16 KB
/
main.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
71
name: Main
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install dependencies
working-directory: src
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore -property:VERSION_POSTFIX=".${{ github.run_number }}"
working-directory: src
- name: Test
run: dotnet test --configuration Release --no-build
working-directory: src
- name: Publish net461
run: dotnet publish --framework net461 --configuration Release --no-restore
working-directory: src/RefasmerExe
- name: Publish netcoreapp
run: dotnet publish --framework netcoreapp3.1 --configuration Release --no-restore
working-directory: src/RefasmerExe
- name: Publish net5.0
run: dotnet publish --framework net5.0 --configuration Release --no-restore
working-directory: src/RefasmerExe
- name: Publish net6.0
run: dotnet publish --framework net6.0 --configuration Release --no-restore
working-directory: src/RefasmerExe
- name: Publish net7.0
run: dotnet publish --framework net7.0 --configuration Release --no-restore
working-directory: src/RefasmerExe
- name: Zip net461
run: zip Refasmer.net461.1.0.${{ github.run_number }}.zip *
working-directory: src/RefasmerExe/bin/Release/net461
- name: Zip netcoreapp
run: zip Refasmer.netcoreapp.1.0.${{ github.run_number }}.zip *
working-directory: src/RefasmerExe/bin/Release/netcoreapp3.1/publish
- name: Zip net5.0
run: zip Refasmer.net50.1.0.${{ github.run_number }}.zip *
working-directory: src/RefasmerExe/bin/Release/net5.0/publish
- name: Zip net6.0
run: zip Refasmer.net60.1.0.${{ github.run_number }}.zip *
working-directory: src/RefasmerExe/bin/Release/net6.0/publish
- name: Zip net7.0
run: zip Refasmer.net70.1.0.${{ github.run_number }}.zip *
working-directory: src/RefasmerExe/bin/Release/net7.0/publish