From 3d64ed150aca3b5fd6d5f91a76f4a91216fbabde Mon Sep 17 00:00:00 2001 From: Kyle Sanderson Date: Thu, 7 Sep 2023 14:52:37 -0700 Subject: [PATCH] ci: goreleaser lower parallelism to mitigate OOM issues (#1086) ci: clamp parallelism to reality --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89efabd..b52a164 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -100,7 +100,7 @@ jobs: with: distribution: goreleaser version: latest - args: release --clean --skip-validate --skip-publish --parallelism 99 + args: release --clean --skip-validate --skip-publish --parallelism 5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}