-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjreleaser.yml
62 lines (56 loc) · 1.49 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
project:
name: rust-jreleaser
version: 0.1.2
description: A very, very simple Hello World application written in Rust
longDescription: A very, very simple Hello World application
authors:
- Engin Diri
license: Apache-2.0
inceptionYear: 2022
environment:
properties:
artifactsDir: out/jreleaser/assemble/rust-jreleaser/archive
platform:
replacements:
'osx-x86_64': 'darwin-amd64'
'linux-x86_64': 'linux-amd64'
'windows-x86_64': 'windows-amd64'
assemble:
archive:
rust-jreleaser:
active: ALWAYS
formats: [ ZIP ]
attachPlatform: true
fileSets:
- input: 'target/release'
output: 'bin'
includes: [ 'rust-jreleaser{.exe,}' ]
- input: '.'
includes: [ 'LICENSE' ]
distributions:
rust-jreleaser:
type: BINARY
executable:
windowsExtension: exe
artifacts:
- path: '{{artifactsDir}}/{{distributionName}}-{{projectVersion}}-darwin-amd64.zip'
platform: 'osx-x86_64'
- path: '{{artifactsDir}}/{{distributionName}}-{{projectVersion}}-linux-amd64.zip'
platform: 'linux-x86_64'
- path: '{{artifactsDir}}/{{distributionName}}-{{projectVersion}}-windows-amd64.zip'
platform: 'windows-x86_64'
packagers:
brew:
active: ALWAYS
commitAuthor:
name: dirien
email: engin.diri@mail.schwarz
tap:
owner: dirien
name: homebrew-dirien-dev
release:
github:
owner: dirien
name: rust-jreleaser
overwrite: true
skipTag: true