Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
fixin release process
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando Escolar committed May 4, 2021
1 parent 600ed74 commit c081cd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: nupkg
path: ./nupkg/*.nupkg
path: ./nupkg/*.*
retention-days: 1
nugets:
needs: pack
Expand All @@ -48,8 +48,8 @@ jobs:
dotnet-version: 5.0.x
- name: Publish NuGet packages
run: |
dotnet nuget push ./nupkg/**/*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push ./nupkg/**/*.snupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push ./nupkg/*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push ./nupkg/*.snupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
release:
needs: pack
runs-on: ubuntu-latest
Expand Down

0 comments on commit c081cd7

Please sign in to comment.