Skip to content

Commit

Permalink
fix: incorrect source edited
Browse files Browse the repository at this point in the history
  • Loading branch information
onurkanbakirci committed Dec 13, 2023
1 parent aea67d0 commit d7bf583
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/composite/publish-lib/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ runs:
shell: "bash"
run: dotnet pack ${{ inputs.path }} --configuration Release --no-build

- name: Add github as a source
shell: "bash"
run: dotnet nuget add source --username onurkanbakirci --password ${{inputs.api_key}} --name github https://nuget.pkg.github.com/onurkanbakirci/index.json

- name: Publish nuget packages
shell: "bash"
run: dotnet nuget push "${{ inputs.nupkg_path }}" --source "${{inputs.source}}" --api-key ${{inputs.api_key}}
run: dotnet nuget push ${{ inputs.nupkg_path }} --source ${{inputs.source}} --api-key ${{inputs.api_key}}

0 comments on commit d7bf583

Please sign in to comment.