Skip to content

Commit 2b22c3b

Browse files
authored
Fix snapshot publishing (#2479)
1 parent e3c141c commit 2b22c3b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
4040

4141
- name: Build and publish snapshots
42-
run: ./gradlew assemble publishToSonatype
42+
# Disable parallel due to Sonatype's HTTP 429 rate limiting
43+
run: ./gradlew assemble publishToSonatype --no-parallel
4344
env:
4445
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}
4546
SONATYPE_KEY: ${{ secrets.SONATYPE_KEY }}

0 commit comments

Comments
 (0)