Skip to content

Commit

Permalink
Fix nuget api key
Browse files Browse the repository at this point in the history
  • Loading branch information
Virmak committed Mar 10, 2024
1 parent e5edb9d commit 278fabb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
- name: Pack
run: nuget pack EFCore.Sqlite.Concurrency.nuspec -Version ${VERSION} -Properties Configuration=Release
- name: Push
run: dotnet nuget push EFCore.Sqlite.Concurrency.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGETAPIKEY}
env:
NUGETAPIKEY: ${{ secrets.NUGETAPIKEY }}
run: dotnet nuget push EFCore.Sqlite.Concurrency.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key $NUGETAPIKEY
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 278fabb

Please sign in to comment.