-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjreleaser.yml
51 lines (47 loc) · 1.42 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
environment:
properties:
artifactsDir: out/jreleaser/assemble/helloworld/archive
project:
name: helloworld
description: HelloWorld in Haskell
longDescription: HelloWorld in Haskell
links:
homepage: https://github.com/jreleaser/helloworld-haskell
authors:
- Andres Almiray
license: APACHE-2.0
inceptionYear: 2022
stereotype: CLI
release:
github:
overwrite: true
changelog:
formatted: ALWAYS
preset: conventional-commits
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
assemble:
archive:
helloworld:
active: ALWAYS
formats: [ ZIP ]
attachPlatform: true
fileSets:
- input: 'bin'
output: 'bin'
includes: [ 'helloworld{.exe,}' ]
- input: '.'
includes: [ 'LICENSE' ]
distributions:
helloworld:
executable:
windowsExtension: exe
artifacts:
- path: '{{artifactsDir}}/{{distributionName}}-{{projectVersion}}-osx-x86_64.zip'
platform: 'osx-x86_64'
- path: '{{artifactsDir}}/{{distributionName}}-{{projectVersion}}-osx-aarch_64.zip'
platform: 'osx-aarch_64'
- path: '{{artifactsDir}}/{{distributionName}}-{{projectVersion}}-windows-x86_64.zip'
platform: 'windows-x86_64'
- path: '{{artifactsDir}}/{{distributionName}}-{{projectVersion}}-linux-x86_64.zip'
platform: 'linux-x86_64'