Skip to content

Commit 0935af1

Browse files
committed
feat: release dry run option
1 parent 5aca566 commit 0935af1

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Set `RELEASE_DRY_RUN` to `true` to print debug info about the release and not actually release.
13+
14+
### Fixed
15+
16+
- Fixed sources jar not including all sources from `commonJava` configuration.
17+
1018
## [0.21.0] - 2025-01-28
1119

1220
### Added

refinedarchitect-plugin/src/main/kotlin/BaseExtension.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ open class BaseExtension(private val project: Project) {
4040
file.set(remapJar.archiveFile)
4141
modLoaders.add("Fabric")
4242
}
43+
dryRun.set(System.getenv("RELEASE_DRY_RUN") == "true")
4344
type.set(
4445
if (project.version.toString()
4546
.contains("beta")

0 commit comments

Comments
 (0)