From bc271cdd0a30eba3807e231da4e02f8b4e89ebf2 Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Wed, 4 Jan 2023 09:34:58 +0530 Subject: [PATCH] Reduce parallelism of goreleaser to 1 (#2021) ## Description Previously Github Actions was killing (probably because gorelease was using up quite a bit of resources) the process resulting in the Publish-Binary job failing with the following error message: ``` The runner has received a shutdown signal. ``` Related: https://github.com/actions/runner-images/issues/6709 ## Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No ## Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Test - [x] :computer: CI/Deployment - [ ] :hamster: Trivial/Minor ## Issue(s) * fixes https://github.com/alcionai/corso/issues/2014 ## Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bd7dbd40..962424f78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -411,7 +411,7 @@ jobs: uses: goreleaser/goreleaser-action@v4 with: version: latest - args: release --rm-dist --timeout 500m ${{ env.grflags }} + args: release --rm-dist --timeout 500m --parallelism 1 ${{ env.grflags }} workdir: src env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}