From 6ba76f94e881abd6ac7a392423d8b3be119a62bb Mon Sep 17 00:00:00 2001 From: Masaki Murooka Date: Tue, 2 Jan 2024 22:53:37 +0900 Subject: [PATCH] [build-catkin-project] Fix variable handling in the 'if' condition. The workaround https://github.com/actions/runner/issues/1483#issuecomment-1856724561 is employed. --- build-catkin-project/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-catkin-project/action.yml b/build-catkin-project/action.yml index 82604dc..56f4b0f 100644 --- a/build-catkin-project/action.yml +++ b/build-catkin-project/action.yml @@ -102,7 +102,7 @@ runs: catkin build ${{ inputs.build-packages }} --limit-status-rate 0.1 ${{ inputs.catkin-build-args }} --cmake-args -DCMAKE_BUILD_TYPE=${{ inputs.build-type }} ${{ inputs.cmake-args }} shell: bash - name: Run test - if: ${{ !inputs.skip-test }} + if: ${{ inputs.skip-test == false || inputs.skip-test == 'false' }} run: | set -e set -x