We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: Support registration manual NuGet source to NuGet.Config
NuGet.Config
Justification: When we uses private NuGet repository like nexus, We need to configure our source to NuGet.Config.
I'm currently using with these code, But It is too long and scattered in many workflows.
- name: Add NuGet source (Private Nexus) id: add-nuget-source run: | dotnet nuget remove source Nexus | true dotnet nuget add source ${{ secrets.PRIVATE_NUGET_SOURCE }} \ --name Nexus \ --username ${{ secrets.PRIVATE_AGENT_NEXUS_USERNAME }} \ --password ${{ secrets.PRIVATE_AGENT_NEXUS_PASSWORD }} \ --store-password-in-clear-text
Also, we need to remove this configure with these code when using ghcr.
- name: Remove NuGet source (Private Nexus) if: ${{ always() && steps.add-nuget-source.conclusion == 'success' }} run: dotnet nuget remove source Nexus | true
Are you willing to submit a PR? Yes, I'm interested in. But I need a help. I don't know nice way to resolve these many arguments. Some idea please
The text was updated successfully, but these errors were encountered:
Hi, @134130, thank you for the feature request! We will investigate the issue and get back to you with updates!
Sorry, something went wrong.
No branches or pull requests
Description:
Support registration manual NuGet source to
NuGet.Config
Justification:
When we uses private NuGet repository like nexus, We need to configure our source to
NuGet.Config
.I'm currently using with these code, But It is too long and scattered in many workflows.
Also, we need to remove this configure with these code when using ghcr.
Are you willing to submit a PR?
Yes, I'm interested in. But I need a help.
I don't know nice way to resolve these many arguments. Some idea please
The text was updated successfully, but these errors were encountered: