We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e484d3 commit d242cc5Copy full SHA for d242cc5
.github/workflows/release.yml
@@ -3,10 +3,13 @@ name: Publish Docker image
3
on:
4
release:
5
types: [published]
6
+ push:
7
+ branches:
8
+ - master
9
10
jobs:
- push_to_registries:
- name: Push Docker image to multiple registries
11
+ build:
12
+ name: Build Docker image
13
runs-on: ubuntu-latest
14
permissions:
15
packages: write
internal/provider.go
@@ -44,8 +44,6 @@ func (e *Provider) GetTimeout() time.Duration {
44
return 10 * time.Second
45
}
46
47
-const highestBackoff = 4 * time.Minute
48
-
49
func nextAttemptDelay(attempt int) time.Duration {
50
switch {
51
case attempt < 5:
0 commit comments