Skip to content

Commit 63482da

Browse files
committed
dynamic versioning
[skip ci]
1 parent 9d02a49 commit 63482da

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/maven.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Maven Release
22
on:
33
workflow_dispatch:
4+
inputs:
5+
version:
6+
description: 'Version to release'
7+
required: true
8+
default: '1.0.0'
9+
410

511
jobs:
612
publish:
@@ -26,4 +32,6 @@ jobs:
2632
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
2733

2834
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_IN_MEMORY_KEY }}
29-
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_IN_MEMORY_KEY_PASSWORD }}
35+
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_IN_MEMORY_KEY_PASSWORD }}
36+
37+
ORG_GRADLE_PROJECT_version: ${{ github.event.inputs.version }}

core/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ plugins {
66
}
77

88
group = "org.processing.core"
9-
version = "4.3.1"
109

1110
repositories {
1211
mavenCentral()

0 commit comments

Comments
 (0)