2020-02-21 17:36:12 +01:00
|
|
|
name: NuGet release
|
|
|
|
on:
|
2020-05-13 00:07:18 +02:00
|
|
|
push:
|
2020-02-21 17:36:12 +01:00
|
|
|
branches:
|
|
|
|
- release
|
|
|
|
jobs:
|
2020-02-21 17:57:12 +01:00
|
|
|
release:
|
2020-02-21 17:36:12 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2020-10-28 19:49:39 +01:00
|
|
|
- name: Build solution
|
2020-10-28 19:46:31 +01:00
|
|
|
run: dotnet build --output build
|
2020-02-21 17:36:12 +01:00
|
|
|
- name: Publish NuGet package
|
2020-10-28 20:29:48 +01:00
|
|
|
run: dotnet nuget push "build/*.nupkg" --skip-duplicate --source nuget.org --api-key ${{ secrets.NUGET_TOKEN }}
|
2020-02-21 17:36:12 +01:00
|
|
|
|