-
Notifications
You must be signed in to change notification settings - Fork 86
39 lines (36 loc) · 1.02 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
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