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
Would be nice to have an ability to provide tools for uploading assets (compiled binaries, custom archives, and other types of artifacts).
The easiest possible way I see would be probably by modifying the hooks to support additional functions.
module.exports=async(markdown,metaData)=>{// Use the available data to create a custom releasereturnmarkdown}/** * @param github - an authorized @octokit/rest instance * @param uploadUrl - part of http response for create release request */module.exports.post=async(github,uploadUrl)=>{github.repos.uploadReleaseAsset({
uploadUrl, headers, name, file
})}
The text was updated successfully, but these errors were encountered:
Hello
Would be nice to have an ability to provide tools for uploading assets (compiled binaries, custom archives, and other types of artifacts).
The easiest possible way I see would be probably by modifying the hooks to support additional functions.
The text was updated successfully, but these errors were encountered: