Commit 12c6256
committed
fix: remove invalid 'enabled: auto' from jreleaser prerelease config
JReleaser 1.19.0 fails with:
"Cannot deserialize value of type java.lang.Boolean from String 'auto':
only 'true' or 'false' recognized"
The prerelease.enabled field expects a boolean value, not 'auto'.
Removed the enabled field entirely and kept only the pattern field,
which determines if a release is marked as prerelease based on
version matching.
Updated pattern to match common prerelease patterns:
- RC (Release Candidate)
- SNAPSHOT
- M (Milestone)
- alpha
- beta
This allows JReleaser to automatically determine prerelease status
based on the version string pattern matching.1 parent bb39299 commit 12c6256
1 file changed
+1
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
28 | | - | |
| 27 | + | |
29 | 28 | | |
30 | 29 | | |
31 | 30 | | |
| |||
0 commit comments