github-release-gradle-plugin icon indicating copy to clipboard operation
github-release-gradle-plugin copied to clipboard

A Gradle Plugin to send Releases to Github

Results 16 github-release-gradle-plugin issues
Sort by recently updated
recently updated
newest added

I just hit this in our new automated release process :) ``` :githubRelease STATUS CREATED 07:30:19 :githubRelease https://github.com/bdeployteam/bdeploy/releases/tag/v2.0.0 07:30:19 :githubRelease UPLOADING ASSETS 07:30:19 :githubRelease UPLOADING /var/jenkins_home/workspace/Deployment Release/deployment/minion/build/distributions/bdeploy-linux64-2.0.0.zip 07:30:34 :githubRelease UPLOADING...

In the latest release trying to use `owner.set` (for example) results in ``` No signature of method: ...githubRelease() is applicable for argument types: ... ``` From the wiki, it looks...

I was poking around the code and noticed that the plugin is still using the `create` api to create the `githubRelease` task. Have you considered [deferring task creation](https://docs.gradle.org/current/userguide/task_configuration_avoidance.html#sec:how_do_i_defer_creation) with the...

In the Readme you state ``` body "Wham, bam! Thank you clam!" // by default this is a list of commits from the current commit to the last commit associated...

In our app we are trying to set the release assets using the `setReleaseAssets` function call on the `GithubReleaseTask` prior to running the task. We do this using the following...

We were on 2.2.12 for a long while now, creating our releases just fine (thanks for that). However updating to 2.3.7 made it stop working completely. I reverted the update...

I recently integrated this plugin into a project and had success with it while testing the integration with `dryRun` as well as against a fork of the project but when...

When using this plug-in the Only artifacts listed in notifications are the source zip and tar. Additional artifacts are only visible on the release page. Feels like it's releases immediately...

bug
help wanted

I am using `githubRelease` task in my gradle script and it is working well. Currently I am hving something like: ~~~ java if (development_stage == '0') { tagName = "dev"...

I've been trying to get this plugin to work for the last few hours and this is the error I'm getting ![screen shot 2019-03-07 at 04 13 30](https://user-images.githubusercontent.com/4052647/53931987-675a8f80-408f-11e9-8cb8-efe69eb64c5a.png) build.gradle ```java...