We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea7096c commit 02063fbCopy full SHA for 02063fb
1 file changed
.github/workflows/release.yml
@@ -4,6 +4,7 @@ on:
4
5
env:
6
DOTNET_VERSION: 8.0.414
7
+ GITHUB_TOKEN: ${{ secrets.QMap-Package-publisher }}
8
jobs:
9
build:
10
runs-on: ubuntu-latest
@@ -20,6 +21,9 @@ jobs:
20
21
run: dotnet build --configuration Release /p:Version=${VERSION}
22
- name: Pack
23
run: dotnet pack --configuration Release /p:Version=${VERSION} --no-build --output .
24
+ - name: Puush package
25
+ run: dotnet nuget push NuGet.Workflow.${VERSION}.nupkg --source https://nuget.pkg.github.com/acraven/index.json --api-key ${GITHUB_TOKEN}
26
+
27
28
29
0 commit comments