Skip to content

Commit f247010

Browse files
committed
1.1.0-SNAPSHOT
1 parent f47aafc commit f247010

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/ci-snapshot.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ jobs:
2525
id: get_version
2626
run: echo ::set-output name=VERSION::$(gradle properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}')
2727

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
2934
uses: gradle/gradle-build-action@v2
3035
with:
3136
gradle-version: 7.4

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ val logbackVersion = "1.2.10"
55
val integrationOption = "tests.integration"
66

77
group = "io.reactiverse"
8-
version = "1.1.0"
8+
version = "1.1.0-SNAPSHOT"
99

1010
plugins {
1111
`java-library`
@@ -121,9 +121,9 @@ tasks {
121121
)
122122
}
123123

124-
// withType<Sign> {
125-
// onlyIf { project.extra["isReleaseVersion"] as Boolean }
126-
// }
124+
withType<Sign> {
125+
onlyIf { project.extra["isReleaseVersion"] as Boolean }
126+
}
127127

128128
withType<Wrapper> {
129129
gradleVersion = "7.4"

0 commit comments

Comments
 (0)