We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c499b9 commit 020c452Copy full SHA for 020c452
.github/workflows/publish.yml
@@ -16,6 +16,8 @@ jobs:
16
with:
17
dotnet-version: '8.0.x' # SDK Version to use.
18
source-url: https://api.nuget.org/v3/index.json
19
+ env:
20
+ NUGET_AUTH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
21
- run: dotnet build --configuration Release BarcodeStandard/BarcodeStandard.csproj
22
- name: Publish the package to NuGet
23
run: dotnet nuget push BarcodeStandard/bin/Release/*.nupkg -k ${{ secrets.PUBLISH_TOKEN }} -s https://api.nuget.org/v3/index.json
0 commit comments