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 b63bdba commit 3c10c1eCopy full SHA for 3c10c1e
action.yml
@@ -13,10 +13,10 @@ inputs:
13
registry_url:
14
description: 'Url of the registry action is loging in to'
15
required: true
16
- username:
+ registry_user:
17
description: 'Username of the registry obtained from secrets'
18
19
- password:
+ registry_pass:
20
description: 'Password of the registry obtained from secrets'
21
22
@@ -51,8 +51,8 @@ runs:
51
uses: docker/login-action@v1
52
with:
53
registry: ${{ inputs.registry_url }}
54
- username: ${{ inputs.username }}
55
- password: ${{ inputs.password }}
+ username: ${{ inputs.registry_user }}
+ password: ${{ inputs.registry_pass }}
56
57
- name: Build image
58
uses: docker/[email protected]
0 commit comments