We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
feature
1 parent fea0924 commit 184274dCopy full SHA for 184274d
action.yml
@@ -43,7 +43,11 @@ inputs:
43
promote-retry-timeout-seconds:
44
description: 'Promote retry timeout seconds'
45
required: false
46
- default: '15'
+ default: '3000'
47
+ promote-retry-wait-seconds:
48
+ description: 'Promote retry wait seconds'
49
+ required: false
50
+ default: '30'
51
52
outputs:
53
image:
@@ -133,8 +137,9 @@ runs:
133
137
with:
134
138
shell: bash
135
139
timeout_seconds: ${{ inputs.promote-retry-timeout-seconds }}
140
+ retry_wait_seconds: ${{ inputs.promote-retry-wait-seconds }}
136
141
max_attempts: ${{ inputs.promote-retry-max-attempts }}
- retry_on: timeout
142
+ retry_on: any
143
command: |
144
docker pull ${{ steps.from.outputs.tags }}
145
0 commit comments