Skip to content

Commit

Permalink
goreleaser: adjust timeout (#6464)
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Santos <nick.santos@docker.com>
  • Loading branch information
nicks authored Nov 5, 2024
1 parent b6805fe commit 0482897
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ jobs:
- run: ssh remote-docker "sudo apt-get update; sudo apt-get install -y qemu-user-static binfmt-support"
- checkout
- run: make build-js
- run: goreleaser --verbose --clean --skip=publish --snapshot
- run:
command: goreleaser --single-target --verbose --clean --skip=publish --snapshot
no_output_timeout: 20m
- slack/notify-on-failure:
only_for_branches: main

Expand All @@ -180,7 +182,9 @@ jobs:
- slack/notify:
message: "A Tilt release has started!"
- checkout
- run: ./scripts/release-ci.sh
- run:
command: ./scripts/release-ci.sh
no_output_timeout: 20m
- slack/status

workflows:
Expand Down
3 changes: 2 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: 2
project_name: tilt
builds:
- main: ./cmd/tilt/main.go
Expand Down Expand Up @@ -136,7 +137,7 @@ archives:
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
version_template: "{{ .Tag }}-next"

changelog:
sort: asc
Expand Down

0 comments on commit 0482897

Please sign in to comment.