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.
1 parent d73d1cf commit 9483ce7Copy full SHA for 9483ce7
action.yml
@@ -200,7 +200,7 @@ runs:
200
201
- name: Login
202
uses: docker/login-action@v3
203
- if: ${{ contains(inputs.registry, '.amazonaws.com') || ( inputs.login != '' && inputs.password != '' ) }}
+ if: ${{ inputs.login != '' && inputs.password != '' }}
204
with:
205
registry: ${{ inputs.registry }}
206
username: ${{ inputs.login }}
@@ -209,7 +209,7 @@ runs:
209
- name: Build and push Docker images
210
# Do not update to >=v6 untill the issue would be solved
211
# https://github.com/docker/build-push-action/issues/1167
212
- uses: docker/build-push-action@v6
+ uses: docker/build-push-action@v5
213
id: docker-build-push-action
214
215
allow: ${{ inputs.allow }}
0 commit comments