Skip to content

Commit

Permalink
fix empty check condition
Browse files Browse the repository at this point in the history
  • Loading branch information
neel-astro committed Sep 27, 2024
1 parent e49d5e6 commit 48ca4e4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ runs:
echo ::group::Get DBT Deploy Options
if [[ ${{ inputs.root-folder }} != "" ]]; then
if [[ "${{ inputs.root-folder }}" != "" ]]; then
cd ${{ inputs.root-folder }}
fi
Expand Down Expand Up @@ -344,7 +344,7 @@ runs:
# infer based on files changed to deploy only dags or image and dags
echo ::group::Get Deploy Type
if [[ ${{ inputs.root-folder }} != "" ]]; then
if [[ "${{ inputs.root-folder }}" != "" ]]; then
cd ${{ inputs.root-folder }}
fi
Expand Down Expand Up @@ -452,7 +452,7 @@ runs:
echo ::group::DAG Deploy to Astro
# Deploy only dags
if [[ ${{ inputs.root-folder }} != "" ]]; then
if [[ "${{ inputs.root-folder }}" != "" ]]; then
cd ${{ inputs.root-folder }}
fi
Expand All @@ -466,7 +466,7 @@ runs:
echo ::group::Image and DAG Deploy to Astro
# Deploy image and DAGs
if [[ ${{ inputs.root-folder }} != "" ]]; then
if [[ "${{ inputs.root-folder }}" != "" ]]; then
cd ${{ inputs.root-folder }}
fi
Expand All @@ -479,7 +479,7 @@ runs:
echo ::group::DBT Deploy to Astro
if [[ ${{ inputs.root-folder }} != "" ]]; then
if [[ "${{ inputs.root-folder }}" != "" ]]; then
cd ${{ inputs.root-folder }}
fi
Expand Down

0 comments on commit 48ca4e4

Please sign in to comment.