-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Unable to upload asset to release #377
Comments
gep13
added a commit
to gep13/GitReleaseManager
that referenced
this issue
May 10, 2021
This now seems to be a requirement in Octokit, so we need to make sure to map this property from the Octokit Release to our internal model, so that we can map it back again, when required. This may require later refactoring, once we figure out how to handle multiple providers.
gep13
added a commit
that referenced
this issue
May 31, 2021
* release/0.12.0: (181 commits) (build) Fix unit tests Bump ApprovalTests from 5.4.7 to 5.5.0 in /src (#379) Validate old config file do not exist (#377) Add UploadUrl property to release model (#373) Ensure that release is located correctly (#374) Remove case sensitive search (#371) Add missing AutoMapper maps (#372) Always register TemplateRepository (build) Remove error action preference from build script Bump YamlDotNet from 11.0.1 to 11.1.1 in /src (#112) Updated docs with new command option (#112) Add new method for creating empty release (#113) Update unit tests for new functionality (#113) Collect all invalid issues together (#99) Fix unit tests (#99) Add SkipPrereleases option (#285) Fix editorconfig violations (maint) Run dotnet format (#143) Only build on Windows for time being (#143) Try running just Mac and Windows ...
gittools-bot
pushed a commit
that referenced
this issue
May 31, 2021
Merge branch 'release/0.12.0' * release/0.12.0: (181 commits) (build) Fix unit tests Bump ApprovalTests from 5.4.7 to 5.5.0 in /src (#379) Validate old config file do not exist (#377) Add UploadUrl property to release model (#373) Ensure that release is located correctly (#374) Remove case sensitive search (#371) Add missing AutoMapper maps (#372) Always register TemplateRepository (build) Remove error action preference from build script Bump YamlDotNet from 11.0.1 to 11.1.1 in /src (#112) Updated docs with new command option (#112) Add new method for creating empty release (#113) Update unit tests for new functionality (#113) Collect all invalid issues together (#99) Fix unit tests (#99) Add SkipPrereleases option (#285) Fix editorconfig violations (maint) Run dotnet format (#143) Only build on Windows for time being (#143) Try running just Mac and Windows ...
🎉 This issue has been resolved in version 0.12.0 🎉 The release is available on: Your GitReleaseManager bot 📦🚀 |
gittools-bot
pushed a commit
that referenced
this issue
May 31, 2021
Merge branch 'release/0.12.0' * release/0.12.0: (181 commits) (build) Fix unit tests Bump ApprovalTests from 5.4.7 to 5.5.0 in /src (#379) Validate old config file do not exist (#377) Add UploadUrl property to release model (#373) Ensure that release is located correctly (#374) Remove case sensitive search (#371) Add missing AutoMapper maps (#372) Always register TemplateRepository (build) Remove error action preference from build script Bump YamlDotNet from 11.0.1 to 11.1.1 in /src (#112) Updated docs with new command option (#112) Add new method for creating empty release (#113) Update unit tests for new functionality (#113) Collect all invalid issues together (#99) Fix unit tests (#99) Add SkipPrereleases option (#285) Fix editorconfig violations (maint) Run dotnet format (#143) Only build on Windows for time being (#143) Try running just Mac and Windows ...
gep13
added a commit
that referenced
this issue
May 31, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There has been a change in the way that Octokit uploads an asset to a release, and there is now a requirement that a property called UploadUrl is provided.
Internally within GRM, we map an Octokit Release to our internal model, and then map back again when doing something with the release. Since we don't have an UploadUrl property that model, this is essentially "lost" during this mapping.
For now, simply add a new property to the internal Release model, and we can refactor this in later releases of GRM.
The text was updated successfully, but these errors were encountered: