Skip to content

Commit

Permalink
Fix nuget publish
Browse files Browse the repository at this point in the history
  • Loading branch information
chkr1011 committed Oct 22, 2024
1 parent 74bb68a commit 6417baa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ jobs:
run: dotnet nuget push ${{ github.workspace }}/nugets/**/*.nupkg -k ${{ secrets.MYGET_API_KEY }} -s https://www.myget.org/F/mqttnet/api/v3/index.json --skip-duplicate

publish-nuget:
if: ${{ github.event_name == 'published' }}
# Tag schema is 'v5.0.0-rc' etc.
if: startsWith(github.ref, 'refs/tags/v')
needs: [sign, test]
runs-on: ubuntu-latest

Expand Down

0 comments on commit 6417baa

Please sign in to comment.