File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 25
25
id : get_version
26
26
run : echo ::set-output name=VERSION::$(gradle properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}')
27
27
28
- - name : Publish Release to Sonatype
28
+ - name : Decode
29
+ run : |
30
+ echo "${{secrets.SIGNING_SECRET_KEY_RING_FILE}}" > /tmp/secring.gpg.b64
31
+ base64 -d /tmp/secring.gpg.b64 > /tmp/secring.gpg
32
+
33
+ - name : Publish Snapshot to Sonatype
29
34
uses : gradle/gradle-build-action@v2
30
35
with :
31
36
gradle-version : 7.4
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ val logbackVersion = "1.2.10"
5
5
val integrationOption = " tests.integration"
6
6
7
7
group = " io.reactiverse"
8
- version = " 1.1.0"
8
+ version = " 1.1.0-SNAPSHOT "
9
9
10
10
plugins {
11
11
`java- library`
@@ -121,9 +121,9 @@ tasks {
121
121
)
122
122
}
123
123
124
- // withType<Sign> {
125
- // onlyIf { project.extra["isReleaseVersion"] as Boolean }
126
- // }
124
+ withType<Sign > {
125
+ onlyIf { project.extra[" isReleaseVersion" ] as Boolean }
126
+ }
127
127
128
128
withType<Wrapper > {
129
129
gradleVersion = " 7.4"
You can’t perform that action at this time.
0 commit comments