Skip to content

Commit 9204ad4

Browse files
committed
Remove Checksums Before Central Portal
Closes gh-72
1 parent df3075f commit 9204ad4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy-artifacts.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,11 @@ jobs:
107107
env:
108108
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.GPG_PRIVATE_KEY }}
109109
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
111115
- name: Publish Staged Artifacts to Central
112116
if: ${{ steps.deploy-location.outputs.deploy_location == 'central' }}
113117
uses: spring-io/central-publish-action@0cdd90d12e6876341e82860d951e1bcddc1e51b6 # v0.2.0

0 commit comments

Comments
 (0)