Skip to content

Commit

Permalink
Set the maximum workers to 2 when running the GHA release task.
Browse files Browse the repository at this point in the history
Signed-off-by: David Venable <[email protected]>
  • Loading branch information
dlvenable committed Nov 27, 2023
1 parent 4faf7e2 commit 9f8efda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Get Version
run: grep '^version=' gradle.properties >> $GITHUB_ENV
- name: Build Jar Files
run: ./gradlew --parallel build
run: ./gradlew --parallel --max-workers 2 build

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
Expand All @@ -42,7 +42,7 @@ jobs:
aws-region: us-east-1

- name: Build Archives
run: ./gradlew --parallel :release:archives:buildArchives -Prelease
run: ./gradlew --parallel --max-workers 2 :release:archives:buildArchives -Prelease

- name: Build Maven Artifacts
run: ./gradlew publish
Expand Down

0 comments on commit 9f8efda

Please sign in to comment.