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

Gradle implementation of semantic release (https://github.com/semantic-release/semantic-release)

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

As we are not using github we can't use the existing changelog functionality of this plugin, so I was searching for a plugin to write the changelog to a file....

import org.ajoberstar.gradle.git.release.semver.* import org.ajoberstar.gradle.git.release.opinion.Strategies plugins { id 'org.springframework.boot' version '2.5.4' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'de.gliderpilot.semantic-release' version '1.4.2' id 'java' id 'application' } project.ext.ghToken = project.hasProperty('ghToken') ? project.getProperty('ghToken') : System.getenv('GH_TOKEN')...

I am seeing this error when using this plugin is applied to my project and is being built in GitHub Actions (not locally though): ``` org.gradle.api.GradleScriptException: A problem occurred evaluating...

Thanks for the plugin! One slight issue, semantic release seemingly ignores the Jar file's specification for `archiveBaseName` & `archiveFileName`. jar specification: ```gradle jar { zip64 = true manifest { attributes(...

Gradle-git was split into multiple repositories. We must upgrade to these new repositories. I.e. it is not possible to use both gradle-semantic-release plugin and git-publish plugin.

Is it possible to write the changelog to a file in the repo and commit it on the CI Server (manually or by the plugin) before creating the release instead...

This is related to ajoberstar/gradle-git#137. As stated in ajoberstar/gradle-git#137, CI servers do not always checkout the branch, but the latest commit of the branch instead, therefore operating in detached HEAD...

enhancement

Hi, I've been stuck in this problem for a while and I hope somebody can help me here. My goal is to release new versions via semantic versioning on every...

Could you update Gradle? I can't use plugin from statically-compiled Groovy or Java with this error: ``` General error during instruction selection: java.lang.NoClassDefFoundError: Unable to load class de.gliderpilot.gradle.semanticrelease.UpdateGithubRelease due to...

No matter what I do, I can't seem to get the versions to increment. Perhaps I am using the plugin wrong? Here's a simple way to replicate it: ``` git...