File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,15 @@ jobs:
44
44
SONATYPE_KEY : ${{ secrets.SONATYPE_KEY }}
45
45
GPG_PRIVATE_KEY : ${{ secrets.GPG_PRIVATE_KEY }}
46
46
GPG_PASSWORD : ${{ secrets.GPG_PASSWORD }}
47
- run : >
48
- ./gradlew final closeAndReleaseSonatypeStagingRepository --stacktrace
49
- -Prelease.version=${{ github.event.inputs.version }}
50
- "-Porg.gradle.java.installations.paths=${{ steps.setup-java-17.outputs.path }}"
47
+ run : |
48
+ # user.name and user.email are required by the nebula plugin
49
+ git config user.name otelbot
50
+ git config user.email [email protected]
51
+
52
+ ./gradlew final closeAndReleaseSonatypeStagingRepository \
53
+ --stacktrace \
54
+ -Prelease.version=${{ github.event.inputs.version }} \
55
+ " -Porg.gradle.java.installations.paths=${{ steps.setup-java-17.outputs.path }}"
51
56
52
57
- name : Create Release
53
58
env :
You can’t perform that action at this time.
0 commit comments