Skip to content

Commit

Permalink
chore: Add JReleaser configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Oct 22, 2021
1 parent f9d0688 commit 4bdb29d
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions jreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
project:
name: helloworld
description: HelloWorld in Rust
longDescription: HelloWorld in Rust
website: https://github.com/aalmiray/helloworld-rust
authors:
- Andres Almiray
license: MIT
extraProperties:
inceptionYear: 2021

release:
github:
name: helloworld-rust
overwrite: true
sign: true
discussionCategoryName: Announcements
changelog:
formatted: ALWAYS
format: '- {{commitShortHash}} {{commitTitle}}'
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
labelers:
- label: 'feature'
title: 'feat:'
- label: 'issue'
title: 'fix:'
- label: 'task'
title: 'chore:'
- label: 'build'
title: 'build:'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- title: '✅ Issues'
labels:
- 'issue'
- title: '🧰 Tasks'
labels:
- 'task'
- title: '🛠 Build'
labels:
- 'build'
replacers:
- search: 'feat: '
- search: 'fix: '
- search: 'chore: '
- search: 'build: '

signing:
active: always
armored: true

distributions:
helloworld:
type: BINARY
artifacts:
- path: target/distributions/{{distributionName}}-{{projectVersion}}-x86_64-apple-darwin.tar.gz

0 comments on commit 4bdb29d

Please sign in to comment.