-
Notifications
You must be signed in to change notification settings - Fork 3
/
jreleaser.yml
119 lines (115 loc) · 3.17 KB
/
jreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
project:
name: wave-cli
description: Wave CLI
longDescription: Command line tool for Wave container provisioning
website: https://github.com/seqeralabs/wave-cli
authors:
- Seqera
license: Apache-2.0
extraProperties:
inceptionYear: 2023
java:
groupId: io.seqera.wave.cli
version: 21
release:
github:
overwrite: true
draft: true
prerelease:
pattern: .*-beta
changelog:
formatted: ALWAYS
format: '- {{commitShortHash}} {{commitTitle}}'
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
labelers:
- label: 'feature'
title: 'Resolves #'
body: 'Resolves #'
- label: 'feature'
title: '[feature]'
- label: 'issue'
title: 'Fixes #'
body: 'Fixes #'
- label: 'issue'
title: 'Relates to #'
body: 'Relates to #'
- label: 'issue'
title: '[bug]'
- label: 'task'
title: '[task]'
- label: 'merge_pull'
title: 'Merge pull'
- label: 'merge_branch'
title: 'Merge branch'
- label: 'release'
title: '[release]'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- title: '✅ Issues'
labels:
- 'issue'
- title: '🧰 Tasks'
labels:
- 'task'
- title: 'Merge'
labels:
- 'merge_pull'
- 'merge_branch'
- title: 'Release'
labels:
- 'release'
hide:
categories:
- 'Merge'
- 'Release'
contributors:
- 'GitHub'
replacers:
- search: ' \[feature\]'
- search: ' \[bug\]'
- search: ' \[task\]'
- search: ' \[skip ci\]'
- search: ' \[release\]'
distributions:
wave-cli:
type: FLAT_BINARY
executable:
name: wave
artifacts:
- path: "nativeCompile-ubuntu-latest/wave"
transform: "wave-{{projectEffectiveVersion}}-linux-x86_64"
platform: linux-x86_64
extraProperties:
graalVMNativeImage: true
- path: "nativeCompile-windows-latest/wave.exe"
transform: "wave-{{projectEffectiveVersion}}-windows-x86_64.exe"
platform: windows-x86_64
extraProperties:
graalVMNativeImage: true
- path: "nativeCompile-macos-12/wave"
transform: "wave-{{projectEffectiveVersion}}-macos-x86_64"
platform: osx-x86_64
extraProperties:
graalVMNativeImage: true
- path: "nativeCompile-macos-latest-xlarge/wave"
transform: "wave-{{projectEffectiveVersion}}-macos-arm64"
platform: osx-aarch_64
extraProperties:
graalVMNativeImage: true
wave-cli-jar:
type: SINGLE_JAR
artifacts:
- path: "wave-jar/wave.jar"
transform: "wave-{{projectEffectiveVersion}}.jar"
packagers:
brew:
continueOnError: false
multiPlatform: true
repository:
active: RELEASE
tagName: '{{distributionName}}-{{tagName}}'
branch: HEAD
commitMessage: '{{distributionName}} {{tagName}}'