Skip to content

Commit

Permalink
publish fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Oct 31, 2020
1 parent 9f42f44 commit c532bd3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ jobs:
- name: Publish Loqui to Github
uses: svenstaro/upload-release-action@v2
with:
file: Loqui/bin/Release/Loqui.${{ github.event.release.tag_name }}.nupkg
file: Loqui/bin/Release/Loqui.*.nupkg
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.event.release.tag_name }}
file_glob: "true"
- name: Publish Loqui Generation to Github
uses: svenstaro/upload-release-action@v2
with:
file: Loqui.Generation/bin/Release/Loqui.Generation.${{ github.event.release.tag_name }}.nupkg
file: Loqui.Generation/bin/Release/Loqui.Generation.*.nupkg
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.event.release.tag_name }}
file_glob: "true"
- name: Publish to Nuget.org
run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --no-symbols true

0 comments on commit c532bd3

Please sign in to comment.