diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 13:45:59 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 13:45:59 -0500 |
commit | af2b719d8afc03a8d60cac541ccd73b2f198c31b (patch) | |
tree | 77901da3d1dd1b7ee40f580d5ae1140227713117 | |
parent | [SKIP CI] docs: Add pkg.go.dev link (diff) | |
download | locusts-af2b719d8afc03a8d60cac541ccd73b2f198c31b.tar locusts-af2b719d8afc03a8d60cac541ccd73b2f198c31b.tar.gz locusts-af2b719d8afc03a8d60cac541ccd73b2f198c31b.tar.bz2 locusts-af2b719d8afc03a8d60cac541ccd73b2f198c31b.tar.lz locusts-af2b719d8afc03a8d60cac541ccd73b2f198c31b.tar.xz locusts-af2b719d8afc03a8d60cac541ccd73b2f198c31b.tar.zst locusts-af2b719d8afc03a8d60cac541ccd73b2f198c31b.zip |
[SKIP CI] ci: Add nuget token explicitly
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | .github/workflows/dotnet.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index e706147..106d92c 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -79,4 +79,4 @@ jobs: run: dotnet build --configuration Release --no-restore -p:SymbolPackageFormat=snupkg - name: Publish the package run: | - dotnet nuget push src/bin/Release/*.nupkg -s https://api.nuget.org/v3/index.json + dotnet nuget push src/bin/Release/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_TOKEN }} |