mirror of
https://github.com/jlengrand/jreleaser.git
synced 2026-03-10 08:31:24 +00:00
[model] support additional properties in Environment. Fixes #64
This commit is contained in:
@@ -50,8 +50,8 @@ public class GitlabReleaser implements Releaser {
|
||||
|
||||
public void release() throws ReleaseException {
|
||||
org.jreleaser.model.Gitlab gitlab = context.getModel().getRelease().getGitlab();
|
||||
context.getLogger().info("Releasing to {}", gitlab.getResolvedRepoUrl(context.getModel().getProject()));
|
||||
String tagName = gitlab.getEffectiveTagName(context.getModel().getProject());
|
||||
context.getLogger().info("Releasing to {}", gitlab.getResolvedRepoUrl(context.getModel()));
|
||||
String tagName = gitlab.getEffectiveTagName(context.getModel());
|
||||
|
||||
try {
|
||||
String changelog = context.getChangelog();
|
||||
|
||||
Reference in New Issue
Block a user