File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Maven Release
2
2
on :
3
3
workflow_dispatch :
4
+ inputs :
5
+ version :
6
+ description : ' Version to release'
7
+ required : true
8
+ default : ' 1.0.0'
9
+
4
10
5
11
jobs :
6
12
publish :
26
32
ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
27
33
28
34
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 }}
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ plugins {
6
6
}
7
7
8
8
group = " org.processing.core"
9
- version = " 4.3.1"
10
9
11
10
repositories {
12
11
mavenCentral()
You can’t perform that action at this time.
0 commit comments