Skip to content

Commit

Permalink
workflow nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
nextcaptcha committed Mar 18, 2024
1 parent 0fa4215 commit 97d32b9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@ jobs:
- name: Setup NuGet
uses: NuGet/setup-nuget@v1

- name: Add NuGet Source
run: nuget sources add -name github -source https://nuget.pkg.github.com/nextcaptcha/index.json -username nextcaptcha -password ${{ secrets.GIT_TOKEN }}
- name: Add NuGet source
run: |
nuget sources add -name github -source https://nuget.pkg.github.com/nextcaptcha/index.json -username nextcaptcha -password ${{ secrets.GIT_TOKEN }}
env:
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}

- name: Push NuGet Package
run: nuget push *.nupkg -Source github -SkipDuplicate

0 comments on commit 97d32b9

Please sign in to comment.