From a507a884f2a15636cc2d291f69f23ac3c757dc45 Mon Sep 17 00:00:00 2001 From: Alexandre Pires Date: Tue, 1 Oct 2024 23:27:45 +0200 Subject: [PATCH] Refactor get-host-info action.yml to fix system-id variable assignment --- .github/actions/get-host-info/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/get-host-info/action.yml b/.github/actions/get-host-info/action.yml index 6cabc5b..04a103f 100644 --- a/.github/actions/get-host-info/action.yml +++ b/.github/actions/get-host-info/action.yml @@ -28,4 +28,4 @@ runs: TARGET_HOST: ${{ inputs.target-host }} run: | system_id=$(ansible -i ansible/inventory/hosts -b -u $ANSIBLE_USER -m shell -a "read_system_id" $TARGET_HOST | tail -1) - echo "system-id=$system-id" >> $GITHUB_OUTPUT + echo "system-id=$system_id" >> $GITHUB_OUTPUT