Skip to content

Commit 6df6ec8

Browse files
authored
Add --no-parallel to 3.x branch (#670)
1 parent 6225f37 commit 6df6ec8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
path: '~/.m2/repository/'
2727

2828
- name: Publish to the Staging Repository
29-
run: ./gradlew publishReleasePublicationToStagingRepository
29+
run: ./gradlew publishReleasePublicationToStagingRepository --no-parallel
3030
env:
3131
ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_KEY }}
3232
ORG_GRADLE_PROJECT_SIGNING_PWD: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_PWD }}

.github/workflows/publish-snapshot.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
path: '~/.m2/repository/'
3232

3333
- name: Publish to the Snapshot Repository
34-
run: ./gradlew publishReleasePublicationToSnapshotRepository
34+
run: ./gradlew publishReleasePublicationToSnapshotRepository --no-parallel
3535
env:
3636
ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_KEY }}
3737
ORG_GRADLE_PROJECT_SIGNING_PWD: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_PWD }}

0 commit comments

Comments
 (0)