-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (45 loc) · 1.31 KB
/
publish.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
name: Publish
on:
push:
branches:
- master
paths:
- RELEASE_NOTES.md
- .github/workflows/publish.yml
jobs:
pack:
name: Package
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Dotnet
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Restore Tools
run: dotnet tool restore
- name: Restore
run: dotnet paket restore
- name: Build
shell: cmd
run: dotnet build -c Release src\OPCViewer.sln
- name: Pack
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: dotnet aardpack src\OPCViewer.sln --notag
- name: Upload Packages
uses: actions/upload-artifact@v3
with:
name: packages
path: bin\pack
- name: GitHub Packages
env:
NUGET_KEY: ${{ secrets.GITHUB_TOKEN }}
shell: cmd
run: dotnet nuget push "bin\pack\*.nupkg" -k %NUGET_KEY% -s "https://nuget.pkg.github.com/aardvark-platform/index.json" --skip-duplicate
- name: NuGet
env:
NUGET_KEY: ${{ secrets.NUGET_KEY }}
shell: cmd
run: dotnet nuget push "bin\pack\*.nupkg" -k %NUGET_KEY% -s "https://api.nuget.org/v3/index.json" --skip-duplicate