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 0adc047 commit 19c8e72Copy full SHA for 19c8e72
.github/workflows/reusable-release.yml
@@ -36,6 +36,14 @@ jobs:
36
- name: Checkout
37
uses: actions/checkout@v3
38
39
+ - name: Login
40
+ uses: docker/login-action@v2
41
+ if: ${{ contains(inputs.registry, '.amazonaws.com') || ( inputs.login != '' && inputs.password != '' ) }}
42
+ with:
43
+ registry: ${{ inputs.registry }}
44
+ username: ${{ inputs.login }}
45
+ password: ${{ inputs.password }}
46
+
47
- name: Promote Docker image
48
uses: EuphoricSystems/docker-promote-image@1.0.0
49
with:
0 commit comments