From e365c218ee49c71c97d16871b58fcc0781ec9200 Mon Sep 17 00:00:00 2001 From: SG Date: Wed, 1 Apr 2026 21:53:50 +0300 Subject: [PATCH] QuotFix: quoted variable --- docker-build-push/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker-build-push/action.yml b/docker-build-push/action.yml index 19ba775..368b91a 100644 --- a/docker-build-push/action.yml +++ b/docker-build-push/action.yml @@ -70,6 +70,10 @@ inputs: decription: Private SSH key to update the image on remote Docker host required: false + update_remote_containers: + description: Wether to update containers on remote Docker host + required: false + default: "false" runs: using: composite @@ -81,7 +85,7 @@ runs: shell: bash run: ${{ gitea.action_path }}/push.sh - name: Update remote Docker host - if: ${{ inputs.update_remote == 'true' }} + if: ${{ inputs.update_remote_containers == 'true' }} shell: bash run: ${{ gitea.action_path }}/update.sh