From 6c04c99d314955f4330c8ad552b8c192d8103188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20K=C3=A4mmerling?= Date: Wed, 10 Mar 2021 11:50:51 +0100 Subject: [PATCH] Specify timeout on release jobs --- .github/workflows/release_on_tag.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release_on_tag.yml b/.github/workflows/release_on_tag.yml index 5cb0d9a6..69cc00ed 100644 --- a/.github/workflows/release_on_tag.yml +++ b/.github/workflows/release_on_tag.yml @@ -8,6 +8,7 @@ on: jobs: release-cli: runs-on: macos-latest + timeout-minutes: 360 steps: - name: Checkout uses: actions/checkout@v2 @@ -34,9 +35,10 @@ jobs: gpg-private-key: ${{ secrets.GPG_KEY }} - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 + timeout-minutes: 340 with: version: latest - args: release --rm-dist --skip-validate --parallelism=1 + args: release --rm-dist --skip-validate --parallelism=2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} HC_APPLE_DEVELOPER_USER: ${{ secrets.HC_APPLE_DEVELOPER_USER }}