File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,11 @@ jobs:
107
107
env :
108
108
ORG_GRADLE_PROJECT_signingKey : ${{ secrets.GPG_PRIVATE_KEY }}
109
109
ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.GPG_PASSPHRASE }}
110
- run : ./gradlew publishAllPublicationsToLocalRepository --stacktrace
110
+ run : |
111
+ ./gradlew publishAllPublicationsToLocalRepository --stacktrace
112
+ # rm checksums to work around https://github.com/spring-io/central-publish-action/issues/11
113
+ find -name "*.md5" | xargs rm -f
114
+ find -name "*.sha*" | xargs rm -f
111
115
- name : Publish Staged Artifacts to Central
112
116
if : ${{ steps.deploy-location.outputs.deploy_location == 'central' }}
113
117
uses : spring-io/central-publish-action@0cdd90d12e6876341e82860d951e1bcddc1e51b6 # v0.2.0
You can’t perform that action at this time.
0 commit comments