Chocolatey
Publishes packages to https://chocolatey.org.
The following artifact extensions are supported by this packager:
-
.zip
-
.exe
-
.msi
Distribution Support
Distribution | Supported |
---|---|
Local publication of packages requires running on Windows, have powershell
and choco
installed.
If you rather package and push on CI then set remoteBuild
to true
.
Publication of snapshots is not allowed. |
Legend:
-
required
-
optional
-
may use environment variable
-
accepts Name Templates
#
packagers:
#
chocolatey:
# Enables or disables Chocolatey.
# Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
# Defaults to `NEVER`.
#
active: ALWAYS
# Let the release continue if the packager fails.
# Defaults to `false`.
#
continueOnError: true
# Custom download URL.
#
downloadUrl: https://my.server.com/{{projectName}}/{{tagName}}/{{artifactFile}}
# Additional properties used when evaluating templates.
#
extraProperties:
# Key will be capitalized and prefixed with `chocolatey`, i.e, `chocolateyFoo`.
foo: bar
# Directory with file templates used to prepare the Chocolatey distribution.
# Defaults to `src/jreleaser/distributions/${distribution.name}/chocolatey`.
# If specified, path must exist.
#
templateDirectory: path/to/chocolatey/templates
# List of template files to be skipped.
# Value may be an exact match or a regex.
#
skipTemplates:
- README.md.tpl
# Git author used to commit to the repository.
#
commitAuthor:
# Name used when authoring commits.
# Defaults to `jreleaserbot`.
#
name: jreleaserbot
# E-mail used when authoring commits.
# Defaults to `jreleaser@kordamp.org`.
#
email: jreleaser@kordamp.org
# Git repository to push the manifest to.
# Defaults are shown.
#
bucket:
# Enables or disables the bucket.
# Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
# Defaults to `RELEASE`.
#
active: ALWAYS
# The owner of the bucket.
# Defaults to the same owner as the release repository.
#
owner: duke
# The name of the bucket.
# Defaults to `chocolatey-bucket`.
#
name: chocolatey-bucket
# The tag associated with the manifest.
# If left unspecified, will use `{{tagName}}`.
#
tagName: '{{distributionName}} {{tagName}}'
# The target branch to use.
# May define a `JRELEASER_CHOCOLATEY_${GIT}_BRANCH` environment variable instead.
# Defaults to the branch pointed by HEAD.
#
branch: HEAD
# Username used for authoring commits. Must have write access to the bucket.
# If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_USERNAME`
# environment variable must be defined.
# Defaults to the same username as the release repository.
#
username: duke
# Password or OAuth token with write access to the bucket.
# If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_TOKEN`
# environment variable must be defined.
#
token: __DO_NOT_SET_HERE__
# Message when committing to the bucket.
# If left unspecified, `{{distributionName}} {{tagName}}` will be used.
#
commitMessage: '{{distributionName}} {{tagName}}'
# Name of the Chocolatey package.
# Defaults to `${distribution.name}`.
#
packageName: app
# Package version.
# Defaults to `{{projectVersion}}`.
#
packageVersion: 1.2.3
# The username that can publish Chocolatey packages.
# If left unspecified, the release owner will be used.
#
username: duke
# The ApiKey associated with the given account.
# If left unspecified, the `JRELEASER_CHOCOLATEY_API_KEY`
# environment variable must be defined.
#
apiKey: __DO_NOT_SET_HERE__
# The source to push the package to.
# If left unspecified, will use `https://push.chocolatey.org/`.
#
source: https://push.chocolatey.org/
# Whether to build the package on a remote server or locally.
# Defaults to `false`.
#
remoteBuild: false
# The title of the spec.
# If left unspecified, will use `${project.name}`.
#
title: Duke
# The icon's Url.
# Refer to https://docs.chocolatey.org/en-us/create/create-packages#package-icon-guidelines
#
iconUrl: https://rawcdn.githack.com/duke/app/0934fa1fa3f0bd09c0c8c39fbdeb5df2ce507457/icon.png
#
[packagers.chocolatey]
# Enables or disables Chocolatey.
# Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
# Defaults to `NEVER`.
#
active = "ALWAYS"
# Let the release continue if the packager fails.
# Defaults to `false`.
#
continueOnError = true
# Custom download URL.
#
downloadUrl = "https://my.server.com/{{projectName}}/{{tagName}}/{{artifactFile}}"
# Additional properties used when evaluating templates.
#
extraProperties.foo = "bar"
# Key will be capitalized and prefixed with `chocolatey`, i.e, `chocolateyFoo`.
# Directory with file templates used to prepare the Chocolatey distribution.
# Defaults to `src/jreleaser/distributions/${distribution.name}/chocolatey`.
# If specified, path must exist.
#
templateDirectory = "path/to/chocolatey/templates"
# List of template files to be skipped.
# Value may be an exact match or a regex.
#
skipTemplates = [ "README.md.tpl" ]
# Git author used to commit to the repository.
# Name used when authoring commits.
# Defaults to `jreleaserbot`.
#
commitAuthor.name = "jreleaserbot"
# E-mail used when authoring commits.
# Defaults to `jreleaser@kordamp.org`.
#
commitAuthor.email = "jreleaser@kordamp.org"
# Git repository to push the manifest to.
# Defaults are shown.
# Enables or disables the bucket.
# Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
# Defaults to `RELEASE`.
#
bucket.active = "ALWAYS"
# The owner of the bucket.
# Defaults to the same owner as the release repository.
#
bucket.owner = "duke"
# The name of the bucket.
# Defaults to `chocolatey-bucket`.
#
bucket.name = "chocolatey-bucket"
# The tag associated with the manifest.
# If left unspecified, will use `{{tagName}}`.
#
bucket.tagName = "{{distributionName}} {{tagName}}"
# The target branch to use.
# May define a `JRELEASER_CHOCOLATEY_${GIT}_BRANCH` environment variable instead.
# Defaults to the branch pointed by HEAD.
#
bucket.branch = "HEAD"
# Username used for authoring commits. Must have write access to the bucket.
# If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_USERNAME`
# environment variable must be defined.
# Defaults to the same username as the release repository.
#
bucket.username = "duke"
# Password or OAuth token with write access to the bucket.
# If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_TOKEN`
# environment variable must be defined.
#
bucket.token = "__DO_NOT_SET_HERE__"
# Message when committing to the bucket.
# If left unspecified, `{{distributionName}} {{tagName}}` will be used.
#
bucket.commitMessage = "{{distributionName}} {{tagName}}"
# Name of the Chocolatey package.
# Defaults to `${distribution.name}`.
#
packageName = "app"
# Package version.
# Defaults to `{{projectVersion}}`.
#
packageVersion = "1.2.3"
# The username that can publish Chocolatey packages.
# If left unspecified, the release owner will be used.
#
username = "duke"
# The ApiKey associated with the given account.
# If left unspecified, the `JRELEASER_CHOCOLATEY_API_KEY`
# environment variable must be defined.
#
apiKey = "__DO_NOT_SET_HERE__"
# The source to push the package to.
# If left unspecified, will use `https://push.chocolatey.org/`.
#
source = "https://push.chocolatey.org/"
# Whether to build the package on a remote server or locally.
# Defaults to `false`.
#
remoteBuild = false
# The title of the spec.
# If left unspecified, will use `${project.name}`.
#
title = "Duke"
# The icon's Url.
# Refer to https://docs.chocolatey.org/en-us/create/create-packages#package-icon-guidelines
#
iconUrl = "https://rawcdn.githack.com/duke/app/0934fa1fa3f0bd09c0c8c39fbdeb5df2ce507457/icon.png"
{
//
"packagers": {
//
"chocolatey": {
// Enables or disables Chocolatey.
// Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
// Defaults to `NEVER`.
//
"active": "ALWAYS",
// Let the release continue if the packager fails.
// Defaults to `false`.
//
"continueOnError": true,
// Custom download URL.
//
"downloadUrl": "https://my.server.com/{{projectName}}/{{tagName}}/{{artifactFile}}",
// Additional properties used when evaluating templates.
//
"extraProperties": {
// Key will be capitalized and prefixed with `chocolatey`, i.e, `chocolateyFoo`.
"foo": "bar"
},
// Directory with file templates used to prepare the Chocolatey distribution.
// Defaults to `src/jreleaser/distributions/${distribution.name}/chocolatey`.
// If specified, path must exist.
//
"templateDirectory": "path/to/chocolatey/templates",
// List of template files to be skipped.
// Value may be an exact match or a regex.
//
"skipTemplates": [
"README.md.tpl"
],
// Git author used to commit to the repository.
//
"commitAuthor": {
// Name used when authoring commits.
// Defaults to `jreleaserbot`.
//
"name": "jreleaserbot",
// E-mail used when authoring commits.
// Defaults to `jreleaser@kordamp.org`.
//
"email": "jreleaser@kordamp.org"
},
// Git repository to push the manifest to.
// Defaults are shown.
//
"bucket": {
// Enables or disables the bucket.
// Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
// Defaults to `RELEASE`.
//
"active": "ALWAYS",
// The owner of the bucket.
// Defaults to the same owner as the release repository.
//
"owner": "duke",
// The name of the bucket.
// Defaults to `chocolatey-bucket`.
//
"name": "chocolatey-bucket",
// The tag associated with the manifest.
// If left unspecified, will use `{{tagName}}`.
//
"tagName": "{{distributionName}} {{tagName}}",
// The target branch to use.
// May define a `JRELEASER_CHOCOLATEY_${GIT}_BRANCH` environment variable instead.
// Defaults to the branch pointed by HEAD.
//
"branch": "HEAD",
// Username used for authoring commits. Must have write access to the bucket.
// If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_USERNAME`
// environment variable must be defined.
// Defaults to the same username as the release repository.
//
"username": "duke",
// Password or OAuth token with write access to the bucket.
// If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_TOKEN`
// environment variable must be defined.
//
"token": "__DO_NOT_SET_HERE__",
// Message when committing to the bucket.
// If left unspecified, `{{distributionName}} {{tagName}}` will be used.
//
"commitMessage": "{{distributionName}} {{tagName}}"
},
// Name of the Chocolatey package.
// Defaults to `${distribution.name}`.
//
"packageName": "app",
// Package version.
// Defaults to `{{projectVersion}}`.
//
"packageVersion": "1.2.3",
// The username that can publish Chocolatey packages.
// If left unspecified, the release owner will be used.
//
"username": "duke",
// The ApiKey associated with the given account.
// If left unspecified, the `JRELEASER_CHOCOLATEY_API_KEY`
// environment variable must be defined.
//
"apiKey": "__DO_NOT_SET_HERE__",
// The source to push the package to.
// If left unspecified, will use `https://push.chocolatey.org/`.
//
"source": "https://push.chocolatey.org/",
// Whether to build the package on a remote server or locally.
// Defaults to `false`.
//
"remoteBuild": false,
// The title of the spec.
// If left unspecified, will use `${project.name}`.
//
"title": "Duke",
// The icon's Url.
// Refer to https://docs.chocolatey.org/en-us/create/create-packages#package-icon-guidelines
//
"iconUrl": "https://rawcdn.githack.com/duke/app/0934fa1fa3f0bd09c0c8c39fbdeb5df2ce507457/icon.png"
}
}
}
<jreleaser>
<!--
-->
<packagers>
<!--
-->
<chocolatey>
<!--
Enables or disables Chocolatey.
Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
Defaults to `NEVER`.
-->
<active>ALWAYS</active>
<!--
Let the release continue if the packager fails.
Defaults to `false`.
-->
<continueOnError>true</continueOnError>
<!--
Custom download URL.
-->
<downloadUrl>https://my.server.com/{{projectName}}/{{tagName}}/{{artifactFile}}</downloadUrl>
<!--
Additional properties used when evaluating templates.
-->
<extraProperties>
<!--
Key will be capitalized and prefixed with `chocolatey`, i.e, `chocolateyFoo`.
-->
<foo>bar</foo>
</extraProperties>
<!--
Directory with file templates used to prepare the Chocolatey distribution.
Defaults to `src/jreleaser/distributions/${distribution.name}/chocolatey`.
If specified, path must exist.
-->
<templateDirectory>path/to/chocolatey/templates</templateDirectory>
<!--
List of template files to be skipped.
Value may be an exact match or a regex.
-->
<skipTemplates>
<skipTemplate>README.md.tpl</skipTemplate>
</skipTemplates>
<!--
Git author used to commit to the repository.
-->
<commitAuthor>
<!--
Name used when authoring commits.
Defaults to `jreleaserbot`.
-->
<name>jreleaserbot</name>
<!--
E-mail used when authoring commits.
Defaults to `jreleaser@kordamp.org`.
-->
<email>jreleaser@kordamp.org</email>
</commitAuthor>
<!--
Git repository to push the manifest to.
Defaults are shown.
-->
<bucket>
<!--
Enables or disables the bucket.
Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
Defaults to `RELEASE`.
-->
<active>ALWAYS</active>
<!--
The owner of the bucket.
Defaults to the same owner as the release repository.
-->
<owner>duke</owner>
<!--
The name of the bucket.
Defaults to `chocolatey-bucket`.
-->
<name>chocolatey-bucket</name>
<!--
The tag associated with the manifest.
If left unspecified, will use `{{tagName}}`.
-->
<tagName>{{distributionName}} {{tagName}}</tagName>
<!--
The target branch to use.
May define a `JRELEASER_CHOCOLATEY_${GIT}_BRANCH`` environment variable instead.
Defaults to the branch pointed by HEAD.
-->
<branch>HEAD</branch>
<!--
Username used for authoring commits. Must have write access to the bucket.
If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_USERNAME`
environment variable must be defined.
Defaults to the same username as the release repository.
-->
<username>duke</username>
<!--
Password or OAuth token with write access to the bucket.
If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_TOKEN`
environment variable must be defined.
-->
<token>__DO_NOT_SET_HERE__</token>
<!--
Message when committing to the bucket.
If left unspecified, `{{distributionName}} {{tagName}}` will be used.
-->
<commitMessage>{{distributionName}} {{tagName}}</commitMessage>
</bucket>
<!--
Name of the Chocolatey package.
Defaults to `${distribution.name}`.
-->
<packageName>app</packageName>
<!--
Package version.
Defaults to `{{projectVersion}}`.
-->
<packageVersion>1.2.3</packageVersion>
<!--
The username that can publish Chocolatey packages.
If left unspecified, the release owner will be used.
-->
<username>duke</username>
<!--
The ApiKey associated with the given account.
If left unspecified, the `JRELEASER_CHOCOLATEY_API_KEY`
environment variable must be defined.
-->
<apiKey>__DO_NOT_SET_HERE__</apiKey>
<!--
The source to push the package to.
If left unspecified, will use `https://push.chocolatey.org/`.
-->
<source>https://push.chocolatey.org/</source>
<!--
Whether to build the package on a remote server or locally.
Defaults to `false`.
-->
<remoteBuild>false</remoteBuild>
<!--
The title of the spec.
If left unspecified, will use `${project.name}`.
-->
<title>Duke</title>
<!--
The icon's Url.
Refer to https://docs.chocolatey.org/en-us/create/create-packages#package-icon-guidelines
-->
<iconUrl>https://rawcdn.githack.com/duke/app/0934fa1fa3f0bd09c0c8c39fbdeb5df2ce507457/icon.png</iconUrl>
</chocolatey>
</packagers>
</jreleaser>
jreleaser {
//
packagers {
//
chocolatey {
// Enables or disables Chocolatey.
// Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
// Defaults to `NEVER`.
//
active = 'ALWAYS'
// Let the release continue if the packager fails.
// Defaults to `false`.
//
continueOnError = true
// Custom download URL.
//
downloadUrl = 'https://my.server.com/{{projectName}}/{{tagName}}/{{artifactFile}}'
// Additional properties used when evaluating templates.
// Key will be capitalized and prefixed with `chocolatey`, i.e, `chocolateyFoo`.
//
extraProperties.put('foo', 'bar')
// Directory with file templates used to prepare the Chocolatey distribution.
// Defaults to `src/jreleaser/distributions/${distribution.name}/chocolatey`.
// If specified, path must exist.
//
templateDirectory = 'path/to/chocolatey/templates'
// List of template files to be skipped.
// Value may be an exact match or a regex.
//
skipTemplate('README.md.tpl')
// Git author used to commit to the repository.
//
commitAuthor {
// Name used when authoring commits.
// Defaults to `jreleaserbot`.
//
name = 'jreleaserbot'
// E-mail used when authoring commits.
// Defaults to `jreleaser@kordamp.org`.
//
email = 'jreleaser@kordamp.org'
}
// Git repository to push the manifest to.
// Defaults are shown.
//
bucket {
// Enables or disables the bucket.
// Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
// Defaults to `RELEASE`.
//
active = 'ALWAYS'
// The owner of the bucket.
// Defaults to the same owner as the release repository.
//
repoOwner = 'duke'
// The name of the bucket.
// Defaults to `chocolatey-bucket`.
//
name = 'chocolatey-bucket'
// The tag associated with the manifest.
// If left unspecified, will use `{{tagName}}`.
//
tagName = '{{distributionName}} {{tagName}}'
// The target branch to use.
// May define a `JRELEASER_BRANCH` environment variable instead.
// Defaults to the branch pointed by HEAD.
//
branch = 'HEAD'
// Username used for authoring commits. Must have write access to the bucket.
// If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_USERNAME`
// environment variable must be defined.
// Defaults to the same username as the release repository.
//
username = 'duke'
// Password or OAuth token with write access to the bucket.
// If left unspecified, the `JRELEASER_CHOCOLATEY_${GIT}_TOKEN`
// environment variable must be defined.
//
token = '__DO_NOT_SET_HERE__'
# Message when committing to the bucket.
# If left unspecified, `{{distributionName}} {{tagName}}` will be used.
#
commitMessage = '{{distributionName}} {{tagName}}'
}
// Name of the Chocolatey package.
// Defaults to `${distribution.name}`.
//
packageName = 'app'
// Package version.
// Defaults to `{{projectVersion}}`.
//
packageVersion = '1.2.3'
// The username that can publish Chocolatey packages.
// If left unspecified, the release owner will be used.
//
username = 'duke'
// The ApiKey associated with the given account.
// If left unspecified, the `JRELEASER_CHOCOLATEY_API_KEY`
// environment variable must be defined.
//
apiKey = '__DO_NOT_SET_HERE__'
// The source to push the package to.
// If left unspecified, will use `https://push.chocolatey.org/`.
//
source = 'https://push.chocolatey.org/'
// Whether to build the package on a remote server or locally.
// Defaults to `false`.
//
remoteBuild = false
// The title of the spec.
// If left unspecified, will use `${project.name}`.
//
title = 'Duke'
// The icon's Url.
// Refer to https://docs.chocolatey.org/en-us/create/create-packages#package-icon-guidelines
//
iconUrl = 'https://rawcdn.githack.com/duke/app/0934fa1fa3f0bd09c0c8c39fbdeb5df2ce507457/icon.png'
}
}
}
Tokens
The bucket token environment variable must match with the chosen Release service that is, it must be one of: |
-
JRELEASER_CHOCOLATEY_GITHUB_TOKEN
-
JRELEASER_CHOCOLATEY_GITLAB_TOKEN
-
JRELEASER_CHOCOLATEY_GITEA_TOKEN
-
JRELEASER_CHOCOLATEY_CODEBERG_TOKEN
If a matching token is not found then the releaser’s token will be used instead:
-
JRELEASER_GITHUB_TOKEN
-
JRELEASER_GITLAB_TOKEN
-
JRELEASER_GITEA_TOKEN
-
JRELEASER_CODEBERG_TOKEN
On GitHub, you can’t use the default
|
DownloadURL
JReleaser follows these rules to find the download URL to use for a given artifact:
-
if
artifact.extraProperties.chocolateyDownloadUrl
exists, use it. -
if
artifact.extraProperties.downloadUrl
exists, use it. -
if explicit
downloadUrl
is set onchocolatey
, use it. -
if
distribution.extraProperties.chocolateyDownloadUrl
exists, use it. -
if
distribution.extraProperties.downloadUrl
exists, use it. -
if
releaser.${git}.skipRelease
isfalse
then use the releaser’sdownloadUrl
. -
if
releaser.${git}.skipRelease
istrue
then look for a matching uploader given an extraProperty nameddownloadUrlFrom
onartifact
,distribution, `chocolatey
(in that order). The value must be<uploaderType>:<uploaderName>
such as "artifactory:app" or "s3:uploads". -
fail if no suitable URL is found.
With no extra configuration from your side rule 6. will be chosen which is the suitable default that most projects need.
Example
Assuming the current version is 1.2.3
, and a distribution named app
, the above configuration will generate
the following files which will be published to duke/chocolatey-bucket/app
<?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<!-- required -->
<id>app</id>
<version>1.2.3</version>
<authors>Duke</authors>
<description>Sample app</description>
<!-- optional -->
<title>app</title>
<projectUrl>https://acme.com/app</projectUrl>
<copyright>2021 Duke</copyright>
<licenseUrl>https://github.com/duke/app/blob/main/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>app</tags>
<summary>Sample app</summary>
<projectSourceUrl>https://github.com/duke/app</projectSourceUrl>
<packageSourceUrl>https://github.com/duke/chocolatey-bucket</packageSourceUrl>
<docsUrl>https://acme.com/app</docsUrl>
<bugTrackerUrl>https://github.com/duke/app/issues</bugTrackerUrl>
<iconUrl>https://rawcdn.githack.com/duke/app/0934fa1fa3f0bd09c0c8c39fbdeb5df2ce507457/icon.png</iconUrl>
<releaseNotes>https://github.com/duke/app/releases/tag/v1.2.3</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$app_home = Join-Path $package 'app-1.2.3'
$app_bat = Join-Path $app_home 'bin/app.bat'
Install-ChocolateyZipPackage `
-PackageName 'app' `
-Url 'https://github.com/duke/app/releases/download/v1.2.3/app-1.2.3.zip' `
-Checksum '812121a64bbd3f49286f7b0be3c9209068f71fcf9541f313708979602e8de466' `
-ChecksumType 'sha256' `
-UnzipLocation $package
Install-BinFile -Name 'app' -Path $app_bat
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$app_home = Join-Path $package 'app-1.2.3'
$app_bat = Join-Path $app_home 'bin/app.bat'
Uninstall-BinFile -Name 'app' -Path $app_bat
Package Version
Be aware that Chocolatey imposes certain rules on package versions such as:
-
Up to 3 numeric elements separated by
.
-
An optional tag separated by
-
from the numeric elements -
If a 4th element is present separated by
.
it must be an integer or a number following theyyyyMMdd
format.
Some examples of valid package versions are
-
1
-
1.2
-
1.2.3
-
1.2.3.4
-
1.2.3.20220731
-
1-ALPHA1
-
1.2-RC1
-
1.2.3-BETA
Skip Artifacts
If there is more than one matching artifact in a given distribution you may add a skipChocolatey
extra property to the target
artifact to mark it as skipped for packaging with Chocolatey.
Remote Build
It’s expected that you take care of creating a nuget package and publish it to the desired location if remoteBuild
is
set to true
. Templates for GitHub Actions will be available when the chosen releaser is GitHub.
The Push
workflow triggers whenever a new tag is pushed to the bucket repository.
The Trigger
workflow is triggered manually, use for the first publication or if the automatic workflow fails for some
reason.
Templates
The default location for templates is:
src/jreleaser/distributions/<distribution-name>/chocolatey
The following list shows the filenames that may be used to override default templates:
-
binary.nuspec.tpl
-
tools/chocolateyinstall.ps1.tpl
-
tools/chocolateyuninstall.ps1.tpl
-
.github/workflows/push.yml.tpl
-
.github/workflows/trigger.yml.tpl
Any additional files found in the template directories will be copied as is unless their filename ends with .tpl
in
which case Name Templates substitution will take place.
Templates may be initialized using the template
command
Skip Templates
You may skip any template files by defining a set of skip rules in the skipTemplates
property. For example, you may use
any of these expressions to skip a template named README.md.tpl
:
-
README.md.tpl
: matches the full template name -
README.md
: matches the transformed template name -
README.*
: matches using a regex