From 0342bb2fc1dd54ee713876b38c0ad10401f5372d Mon Sep 17 00:00:00 2001 From: Sebastian Florek Date: Mon, 9 Oct 2023 18:34:54 +0200 Subject: [PATCH] fix: extend goreleaser timeout (#464) --- .github/workflows/goreleaser-cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/goreleaser-cd.yml b/.github/workflows/goreleaser-cd.yml index ec4be0a7..f1b760f2 100644 --- a/.github/workflows/goreleaser-cd.yml +++ b/.github/workflows/goreleaser-cd.yml @@ -54,7 +54,7 @@ jobs: with: distribution: goreleaser-pro version: latest - args: release --clean --split + args: release --clean --split --timeout 90m env: CGO_LDFLAGS: "${{ matrix.goos == 'darwin' && '-framework UniformTypeIdentifiers' || '' }}" GOOS: ${{ matrix.GOOS }} @@ -103,7 +103,7 @@ jobs: with: distribution: goreleaser-pro version: latest - args: continue --merge + args: continue --merge --timeout 90m env: GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}