We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 328c433 commit 5c239f8Copy full SHA for 5c239f8
.github/workflows/release.yml
@@ -17,8 +17,6 @@ jobs:
17
uses: actions/setup-dotnet@v1
18
with:
19
dotnet-version: 8.0.x
20
- env:
21
- NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }}
22
- name: Restore dependencies
23
run: |
24
dotnet restore src/S7CommPlusDriver
@@ -40,4 +38,5 @@ jobs:
40
38
dotnet build --configuration Release src/S7CommPlusGUIBrowser
41
39
- name: Publish
42
43
- dotnet nuget push src/S7CommPlusDriver/bin/Release/*.nupkg
+ dotnet nuget push --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json src/S7CommPlusDriver/bin/Release/*.nupkg
+
0 commit comments