File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: CI-Release
3
3
on :
4
4
push :
5
5
tags :
6
- - RELEASE-*
6
+ - ' *-RELEASE '
7
7
8
8
jobs :
9
9
publish-release-sonatype :
29
29
uses : gradle/gradle-build-action@v2
30
30
with :
31
31
gradle-version : 7.4
32
- arguments : assemble publish -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}}
32
+ arguments : assemble publish -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}} --stacktrace
33
33
34
34
- name : Create Release in Github
35
35
uses : actions/create-release@latest
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: CI-Snapshot
2
2
on :
3
3
push :
4
4
tags :
5
- - SNAPSHOT-*
5
+ - ' *-SNAPSHOT '
6
6
7
7
jobs :
8
8
publish-snapshot-sonatype :
@@ -28,17 +28,17 @@ jobs:
28
28
uses : gradle/gradle-build-action@v2
29
29
with :
30
30
gradle-version : 7.4
31
- arguments : assemble publish -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}}
31
+ arguments : assemble publish -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}} --stacktrace
32
32
33
33
- name : Create Release in Github
34
34
uses : actions/create-release@latest
35
35
env :
36
36
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
37
37
with :
38
- tag_name : ${{ steps.get_version.outputs.VERSION }}-SNAPSHOT
39
- release_name : ${{ steps.get_version.outputs.VERSION }}-SNAPSHOT
38
+ tag_name : ${{ steps.get_version.outputs.VERSION }}
39
+ release_name : ${{ steps.get_version.outputs.VERSION }}
40
40
body : |
41
41
Available in Sonatype SNAPSHOTs repository under:
42
- `io.reactiverse:aws-sdk:${{ steps.get_version.outputs.VERSION }}-SNAPSHOT `
42
+ `io.reactiverse:aws-sdk:${{ steps.get_version.outputs.VERSION }}`
43
43
draft : true
44
44
prerelease : true
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`
You can’t perform that action at this time.
0 commit comments