From 7c8e8f1465cc189e529e64fc4c22136a1a55dda6 Mon Sep 17 00:00:00 2001 From: yair Date: Tue, 20 Feb 2024 15:17:01 +0200 Subject: [PATCH] checking .env file --- sail/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sail/action.yml b/sail/action.yml index 598f265..f72b4b0 100644 --- a/sail/action.yml +++ b/sail/action.yml @@ -42,9 +42,9 @@ runs: - name: validate inputs shell: bash run: | - [[ -z "${{ inputs.type }}" ]] || { echo "type input is empty" ; exit 1; } - [[ -z "${{ inputs.port_client_id }}" ]] || { echo "inputs.port_client_id input is empty" ; exit 1; } - [[ -z "${{ inputs.port_client_secret }}" ]] || { echo "inputs.port_client_secret input is empty" ; exit 1; } + [[ "${{ inputs.type }}" ]] || { echo "type input is empty" ; exit 1; } + [[ "${{ inputs.port_client_id }}" ]] || { echo "inputs.port_client_id input is empty" ; exit 1; } + [[ "${{ inputs.port_client_secret }}" ]] || { echo "inputs.port_client_secret input is empty" ; exit 1; } - name: ocean-sail run: |