Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to JReleaser 1.0.0-M3 #24147

Merged
merged 1 commit into from
Mar 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions devtools/cli/distribution/jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ release:
name: quarkus
tagName: "{{projectVersion}}"
overwrite: false
update: true
updateSections: [ ASSETS ]
update:
enabled: true
sections:
- ASSETS
skipTag: true
changelog:
enabled: false
Expand All @@ -36,7 +38,9 @@ release:
distributions:
quarkus:
type: JAVA_BINARY
executable: quarkus
executable:
name: quarkus
windowsExtension: bat
executableExtension: bat
tags:
- quarkus
Expand All @@ -63,6 +67,7 @@ packagers:
continueOnError: true
remoteBuild: true
iconUrl: https://quarkus.io/assets/images/chocolatey-app-icon.png
packageVersion: '{{projectVersionMajor}}.{{projectVersionMinor}}.{{projectVersionPatch}}'

announce:
sdkman:
Expand Down
2 changes: 1 addition & 1 deletion devtools/cli/distribution/release-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export JRELEASER_PROJECT_VERSION=${VERSION}
export JRELEASER_BRANCH=${BRANCH}
export JRELEASER_CHOCOLATEY_GITHUB_BRANCH=${BRANCH}

jbang org.jreleaser:jreleaser:1.0.0-M1 full-release \
jbang org.jreleaser:jreleaser:1.0.0-M3 full-release \
--git-root-search \
-od target

Expand Down