Skip to content

Commit

Permalink
feat(repo): add in push to nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
AJCJ1 committed Dec 23, 2024
1 parent 8994f20 commit f85de37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_to_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- name: Build the project
run: dotnet build ./UrlboxSDK --configuration Release --no-restore

# Pack the NuGet package
# Pack the NuGet package somewhere unique
- name: Pack NuGet package
run: dotnet pack --configuration Release --no-build --output ./package

# Push the NuGet package to NuGet.org
# - name: Publish to NuGet
# run: dotnet nuget push "./package/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
- name: Publish to NuGet
run: dotnet nuget push "./package/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

0 comments on commit f85de37

Please sign in to comment.