Skip to content

Commit 13def90

Browse files
committed
Fix inputs
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 059b0f5 commit 13def90

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ runs:
2020
shell: bash
2121
id: setup-config
2222
env:
23-
SECURE: ${{ inputs.insecureRegistries }}
24-
SSH_GATEWAY_ADDR: ${{ inputs.registryMirrors }}
23+
INSECURE_REG: ${{ inputs.insecureRegistries }}
24+
REG_MIRRORS: ${{ inputs.registryMirrors }}
2525
run: |
2626
cat <<EOF | sudo tee /etc/docker/daemon.json
2727
{
28-
"insecure-registries" : [${{ inputs.registries }} ],
29-
"registry-mirrors": [${{ inputs.mirrors }}]
28+
"insecure-registries" : [${INSECURE_REG} ],
29+
"registry-mirrors": [${REG_MIRRORS}]
3030
}
3131
EOF
3232
- name: Reload Docker

0 commit comments

Comments
 (0)