Skip to content

Commit d016922

Browse files
Release to NuGet (#62)
1 parent 56632f7 commit d016922

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/release-nuget.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Release NuGet
2+
3+
on:
4+
push:
5+
branches:
6+
- "release/*"
7+
8+
jobs:
9+
publish-nuget:
10+
name: Publish package to NuGet.org
11+
runs-on: ubuntu-latest
12+
environment: Release
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Setup .NET
16+
uses: actions/setup-dotnet@v1
17+
with:
18+
dotnet-version: 6.0.x
19+
- uses: cucumber/[email protected]
20+
with:
21+
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
22+
working-directory: "dotnet"

0 commit comments

Comments
 (0)