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