Skip to content

Commit d242cc5

Browse files
committed
Build and publish docker images for development builds
1 parent 7e484d3 commit d242cc5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ name: Publish Docker image
33
on:
44
release:
55
types: [published]
6+
push:
7+
branches:
8+
- master
69

710
jobs:
8-
push_to_registries:
9-
name: Push Docker image to multiple registries
11+
build:
12+
name: Build Docker image
1013
runs-on: ubuntu-latest
1114
permissions:
1215
packages: write

internal/provider.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ func (e *Provider) GetTimeout() time.Duration {
4444
return 10 * time.Second
4545
}
4646

47-
const highestBackoff = 4 * time.Minute
48-
4947
func nextAttemptDelay(attempt int) time.Duration {
5048
switch {
5149
case attempt < 5:

0 commit comments

Comments
 (0)