From 4c1dff9e08f1146afa6d345ad29462b6f1eb0744 Mon Sep 17 00:00:00 2001 From: Ye Sijun Date: Mon, 30 May 2022 17:56:27 +0800 Subject: [PATCH] fix action missing shell Signed-off-by: Ye Sijun --- .github/actions/publish_image/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/publish_image/action.yml b/.github/actions/publish_image/action.yml index 9426ebe76a73..76194391cd76 100644 --- a/.github/actions/publish_image/action.yml +++ b/.github/actions/publish_image/action.yml @@ -39,7 +39,8 @@ runs: with: name: release-${{ github.sha }}-${{ inputs.target }} path: ./target/release - - run: chmod +x ./target/release/databend-* + - shell: bash + run: chmod +x ./target/release/databend-* - name: Build and publish databend image id: docker_build