From c662ef5bd9af59da1b907cc6d62808d2eb399c93 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Fri, 12 Oct 2018 16:59:20 -0400 Subject: [PATCH] Fix typo with ansible_galaxy_info.token Otherwise, we cannot get the token properly from the secret. Change-Id: I5d2b761fbc94aab6077653b0bd2c209c53dbd322 Signed-off-by: Paul Belanger --- roles/ansible-galaxy-import/tasks/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ansible-galaxy-import/tasks/main.yaml b/roles/ansible-galaxy-import/tasks/main.yaml index d5de23ebe..d5631032a 100644 --- a/roles/ansible-galaxy-import/tasks/main.yaml +++ b/roles/ansible-galaxy-import/tasks/main.yaml @@ -1,5 +1,5 @@ - name: Login into Ansible Galaxy - command: "{{ ansible_galaxy_executable }} -s {{ ansible_galaxy_server }} login --github-token {{ galaxy_info.token }}" + command: "{{ ansible_galaxy_executable }} -s {{ ansible_galaxy_server }} login --github-token {{ ansible_galaxy_info.token }}" no_log: True - name: Import role into Ansible Galaxy