Skip to content

Commit

Permalink
getting rid of workflow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinAbro321 committed Mar 18, 2024
1 parent 1d04ee2 commit 4d5b444
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release-helpers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
- main
paths:
- 'helpers/**'
workflow_dispatch:

jobs:
release:
Expand Down
2 changes: 1 addition & 1 deletion helpers/misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func Retry(fn func() error, retries int, delay time.Duration, logger func(format
if err == nil {
break
}

pow := math.Pow(2, float64(r))
backoff := delay * time.Duration(pow)

Expand Down

0 comments on commit 4d5b444

Please sign in to comment.