Skip to content

Commit

Permalink
deploy pipeline multiline fix 3
Browse files Browse the repository at this point in the history
  • Loading branch information
flexxxxer committed Jan 28, 2023
1 parent b1c2e68 commit 46b2f9a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/test-and-deploy-on-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@ jobs:
- name: Pack
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 }} \
--source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
run: 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 }} \
--source https://api.nuget.org/v3/index.json
run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.PUBLISH_PACKAGES_NUGET }} --source https://api.nuget.org/v3/index.json

0 comments on commit 46b2f9a

Please sign in to comment.