Skip to content

Commit

Permalink
Merge pull request #26 from CompositionalIT/replace-publish-nuget-gh-…
Browse files Browse the repository at this point in the history
…action

Fix typo in "Publish" step in GitHub Actions
  • Loading branch information
mattgallagher92 authored Feb 9, 2024
2 parents c3f7500 + 30a5a64 commit f50cff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
working-directory: ./src
if: ${{ github.ref == 'refs/heads/main' }}
- name: Publish
run: dotnet nuget publish "*.nupkg" --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
run: dotnet nuget push "*.nupkg" --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
working-directory: ./src
if: ${{ github.ref == 'refs/heads/main' }}

0 comments on commit f50cff9

Please sign in to comment.