-
Notifications
You must be signed in to change notification settings - Fork 621
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: CI: signature of tar balls, trigger release without tag (#1430)
Fixes the signature of tar balls by using `curl -sfSL --retry 3 --retry-connrefused --retry-delay 2` when fetching the tar balls of the created release. This changes the curl statement to - `s` - siltently - `f` - fail on server error - `S` - showing error - `L` - following redirects - `retry 3` - try three times before giving up on failure - `retry-connrefused` - retry on connection refused - `retry-delay 2` - wait two seconds before a retry this should make the curl statement more resilient. It fixes the failing triggering on a merge of pull request when no release label was provided by removing `${{ ... }}` in favor of `( ... )` if clause in release description. Removing failed runs on `release`.
- Loading branch information
1 parent
e6ea300
commit 7ad6974
Showing
1 changed file
with
51 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters