-
Notifications
You must be signed in to change notification settings - Fork 85
57 lines (54 loc) · 1.82 KB
/
release-build.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
name: Release Build
on:
workflow_dispatch:
push:
branches: [ main ]
permissions:
actions: write
checks: write
contents: read
deployments: read
issues: write
discussions: write
packages: read
pages: write
pull-requests: write
security-events: write
statuses: write
jobs:
Vonage:
name: Vonage
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Try build Release configuration
run: dotnet build --configuration Release .\Vonage\Vonage.csproj -v minimal
- name: Try create Release package
run: dotnet pack -c Release .\Vonage\Vonage.csproj -v minimal --no-build
VonageSigned:
name: Vonage Signed
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Try build ReleaseSigned configuration
run: dotnet build --configuration ReleaseSigned .\Vonage\Vonage.csproj -v minimal
- name: Try create ReleaseSigned package
run: dotnet pack -c ReleaseSigned .\Vonage\Vonage.csproj -v minimal --no-build
VonageServer:
name: Vonage.Server
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Try build Release configuration
run: dotnet build --configuration Release .\Vonage.Server\Vonage.Server.csproj -v minimal
- name: Try create Release package
run: dotnet pack -c Release .\Vonage.Server\Vonage.Server.csproj -v minimal --no-build
VonageServerSigned:
name: Vonage.Server Signed
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Try build ReleaseSigned configuration
run: dotnet build --configuration ReleaseSigned .\Vonage.Server\Vonage.Server.csproj -v minimal
- name: Try create ReleaseSigned package
run: dotnet pack -c ReleaseSigned .\Vonage.Server\Vonage.Server.csproj -v minimal --no-build