-
Notifications
You must be signed in to change notification settings - Fork 9
/
jreleaser.yml
108 lines (106 loc) · 2.78 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
project:
name: tw
description: Tower CLI
longDescription: Tower CLI tool to manage Tower from the command line
website: https://github.com/seqeralabs/tower-cli
authors:
- Seqera Labs
license: MPL-2.0
extraProperties:
inceptionYear: 2021
java:
groupId: io.seqera.tower.cli
version: 11
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:
tw:
type: FLAT_BINARY
executable:
name: tw
artifacts:
- path: "tw-linux/tw"
transform: "{{distributionName}}-linux-x86_64"
platform: linux-x86_64
extraProperties:
graalVMNativeImage: true
- path: "tw-mac/tw"
transform: "{{distributionName}}-osx-x86_64"
platform: osx-x86_64
extraProperties:
graalVMNativeImage: true
- path: "tw-mac-arm64/tw"
transform: "{{distributionName}}-osx-arm64"
platform: osx-aarch_64
extraProperties:
graalVMNativeImage: true
- path: "tw-windows/tw.exe"
transform: "{{distributionName}}-windows-x86_64.exe"
platform: windows-x86_64
extraProperties:
graalVMNativeImage: true
tw-jar:
type: SINGLE_JAR
artifacts:
- path: "tw-jar/tw.jar"
transform: "{{distributionName}}.jar"