brandedoutcast / publish-nuget

📦 GitHub action to automate publishing NuGet packages when project version changes
https://github.com/marketplace/actions/publish-nuget
MIT License
197 stars 101 forks source link

[FEATURE] Creating a release and tag while publishing a nuget package #40

Closed AnmolSinha1201 closed 4 years ago

AnmolSinha1201 commented 4 years ago

We already have a feature to create a tag while publishing a package. Is it possible to also create a github release at the same time? This would be controlled by a flag, just like creating tags is.

brandedoutcast commented 4 years ago

Yup that's achievable using actions/create-release & here's more info on how to do just that take a look at all the comments as you might wanna modify that if condition based on your needs as it acts as the flag

AnmolSinha1201 commented 4 years ago

Aah, that should cover it. Thanks!