You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Github supports actions with cron jobs. If you add GeneratePackageOnBuild to the .csproj to build a .nupkg file automatically, it's easy to push it to the NuGet server this way:
This is a sample .github\workflows\build.yml file's content with a cron job which executes every night and automatically builds the project, creates the nuget package and then sends it to the nuget server. The NUGET_API_KEY should be defined in the settings/secrets/actions section of this repository as a new Repository secret.
The text was updated successfully, but these errors were encountered:
Github supports actions with
cron
jobs. If you addGeneratePackageOnBuild
to the .csproj to build a.nupkg
file automatically, it's easy to push it to the NuGet server this way:This is a sample
.github\workflows\build.yml
file's content with a cron job which executes every night and automatically builds the project, creates the nuget package and then sends it to the nuget server. TheNUGET_API_KEY
should be defined in thesettings/secrets/actions
section of this repository as a newRepository secret
.The text was updated successfully, but these errors were encountered: