Skip to content

Commit 0b5dfcc

Browse files
committed
Merge remote-tracking branch 'origin/master' into upgrade/prepare-1.2.0
# Conflicts: # .github/workflows/ci-snapshot.yml
2 parents 78853ee + 08d929d commit 0b5dfcc

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.github/workflows/ci-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
tag_name: ${{ steps.get_version.outputs.VERSION }}
4646
release_name: ${{ steps.get_version.outputs.VERSION }}
4747
body: |
48-
Available in Sonatype SNAPSHOTs repository under:
48+
Available in Sonatype repository under:
4949
`io.reactiverse:aws-sdk:${{ steps.get_version.outputs.VERSION }}`
5050
draft: false
5151
prerelease: false

.github/workflows/ci-snapshot.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@ 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: 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
3338

3439
- name: Create Release in Github
3540
uses: actions/create-release@latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Artifacts are published [here](https://search.maven.org/artifact/io.reactiverse/
1212

1313
| Project | Vert.x | AWS sdk |
1414
|---------|--------|----------|
15-
| 1.1.0 | 4.2.5 | 2.17.129 |
15+
| 1.1.0 | 4.2.4 | 2.17.129 |
1616
| 1.0.0 | 4.0.0 | 2.15.45 |
1717
| 0.7.0 | 3.9.4 | 2.15.23 |
1818
| 0.6.0 | 3.9.2 | 2.14.7 |

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ tasks {
122122
)
123123
}
124124

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

129129
withType<Wrapper> {
130130
gradleVersion = "8.0"

0 commit comments

Comments
 (0)