Skip to content

Commit

Permalink
checking .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
yairsimantov20 committed Feb 20, 2024
1 parent 5b0e039 commit 8938790
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sail/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ runs:
shell: bash
run: |
- run: |
[[ "${{ 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; }
[[ -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; }
- name: ocean-sail
run: |
Expand Down

0 comments on commit 8938790

Please sign in to comment.