aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManu Sridharan <msridhar@gmail.com>2022-01-18 13:39:59 -0800
committerGitHub <noreply@github.com>2022-01-18 16:39:59 -0500
commit26cfc02fdfdf37a67f6486fbc9267c3e43fdba0b (patch)
tree8d4802a712b0aa8612ef395dec5eed36431ec009
parentb27c6e1ad2e4fb37ac000b8c6feda4789956e9c5 (diff)
downloadnullaway-26cfc02fdfdf37a67f6486fbc9267c3e43fdba0b.tar.gz
Disable parallel builds and daemon for uploading snapshots (#555)
Now that parallel builds are enabled by default, we should disable them when uploading snapshots, to avoid errors due to concurrent uploads. We also disable the daemon since that is typical for such builds.
-rw-r--r--.github/workflows/continuous-integration.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml
index 9beec22..34f291a 100644
--- a/.github/workflows/continuous-integration.yml
+++ b/.github/workflows/continuous-integration.yml
@@ -99,4 +99,4 @@ jobs:
env:
ORG_GRADLE_PROJECT_mavenCentralRepositoryUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralRepositoryPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
- run: ./gradlew clean publish
+ run: ./gradlew clean publish --no-daemon --no-parallel