Skip to content

Commit

Permalink
debploy pipeline multiline fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
flexxxxer committed Jan 28, 2023
1 parent 2df8ab1 commit b1c2e68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-and-deploy-on-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
run: dotnet pack --no-build --configuration Release /p:ContinuousIntegrationBuild=true
- name: Deploy to GitHub
run: |
dotnet nuget push **/*.nupkg --api-key ${{ secrets.PUBLISH_PACKAGES_GITHUB }} >
dotnet nuget push **/*.nupkg --api-key ${{ secrets.PUBLISH_PACKAGES_GITHUB }} \
--source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
- name: Deploy to NuGet
run: |
dotnet nuget push **/*.nupkg --api-key ${{ secrets.PUBLISH_PACKAGES_NUGET }} >
dotnet nuget push **/*.nupkg --api-key ${{ secrets.PUBLISH_PACKAGES_NUGET }} \
--source https://api.nuget.org/v3/index.json

0 comments on commit b1c2e68

Please sign in to comment.