Skip to content

Commit

Permalink
🧹 ci (actions): fix broken logic
Browse files Browse the repository at this point in the history
  • Loading branch information
electricduck committed Apr 11, 2023
1 parent 7c1b11d commit 43a57aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
[[ "$1" != "" ]] && echo "$1" || echo "$2"
}
start_time="$(date +%s)"
if [[ ${{ inputs.dry_run }} == "true" ]]; then
if [[ "${{ inputs.dry_run }}" != "" ]]; then
working_dir="/tmp/sodalite-build-$start_time"
./build.sh \
--container \
Expand Down

0 comments on commit 43a57aa

Please sign in to comment.