Skip to content

Commit c41bf54

Browse files
committed
fix: disable parallel builds goreleaser
1 parent e1e050f commit c41bf54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
distribution: goreleaser
3737
version: latest
38-
args: build --snapshot --clean --debug --timeout 2h --single-target
38+
args: build --snapshot --clean --debug --timeout 2h --single-target --parallelism=1
3939
env:
4040
ARCH: "${{ matrix.arch }}"
4141
GOARCH: "${{ matrix.arch }}"

.github/workflows/prerelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
distribution: goreleaser
4747
version: latest
48-
args: build --clean --debug --timeout 2h --single-target
48+
args: build --clean --debug --timeout 2h --single-target --parallelism=1
4949
env:
5050
ARCH: "${{ matrix.arch }}"
5151
GOARCH: "${{ matrix.arch }}"
@@ -56,7 +56,7 @@ jobs:
5656
with:
5757
distribution: goreleaser
5858
version: latest
59-
args: release --clean --debug --timeout 2h -f dist/config.yaml
59+
args: release --clean --debug --timeout 2h -f dist/config.yaml --parallelism=1
6060
env:
6161
ARCH: "${{ matrix.arch }}"
6262
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)