File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 45
45
tag_name : ${{ steps.get_version.outputs.VERSION }}
46
46
release_name : ${{ steps.get_version.outputs.VERSION }}
47
47
body : |
48
- Available in Sonatype SNAPSHOTs repository under:
48
+ Available in Sonatype repository under:
49
49
`io.reactiverse:aws-sdk:${{ steps.get_version.outputs.VERSION }}`
50
50
draft : false
51
51
prerelease : false
Original file line number Diff line number Diff line change @@ -25,11 +25,16 @@ jobs:
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 : 8.0
32
- arguments : assemble publish -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}} --stacktrace
37
+ arguments : assemble publish -Psigning.keyId=${{secrets.SIGNING_KEY_ID}} -Psigning.password=${{secrets.SIGNING_PASSWORD}} -Psigning.secretKeyRingFile=/tmp/secring.gpg - PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}} --stacktrace
33
38
34
39
- name : Create Release in Github
35
40
uses : actions/create-release@latest
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Artifacts are published [here](https://search.maven.org/artifact/io.reactiverse/
12
12
13
13
| Project | Vert.x | AWS sdk |
14
14
| ---------| --------| ----------|
15
- | 1.1.0 | 4.2.5 | 2.17.129 |
15
+ | 1.1.0 | 4.2.4 | 2.17.129 |
16
16
| 1.0.0 | 4.0.0 | 2.15.45 |
17
17
| 0.7.0 | 3.9.4 | 2.15.23 |
18
18
| 0.6.0 | 3.9.2 | 2.14.7 |
Original file line number Diff line number Diff line change @@ -122,9 +122,9 @@ tasks {
122
122
)
123
123
}
124
124
125
- // withType<Sign> {
126
- // onlyIf { project.extra["isReleaseVersion"] as Boolean }
127
- // }
125
+ withType<Sign > {
126
+ onlyIf { project.extra[" isReleaseVersion" ] as Boolean }
127
+ }
128
128
129
129
withType<Wrapper > {
130
130
gradleVersion = " 8.0"
You can’t perform that action at this time.
0 commit comments