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:
4444 SONATYPE_KEY : ${{ secrets.SONATYPE_KEY }}
4545 GPG_PRIVATE_KEY : ${{ secrets.GPG_PRIVATE_KEY }}
4646 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 }}"
5156
5257 - name : Create Release
5358 env :
You can’t perform that action at this time.
0 commit comments