From e165d92145f753d388a365a7d619bea879f0bc95 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 20 Feb 2024 08:58:55 -0800 Subject: [PATCH] Forgot to add shell to commands --- .github/actions/update-version/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/update-version/action.yml b/.github/actions/update-version/action.yml index e14653650b..0a9695ef79 100644 --- a/.github/actions/update-version/action.yml +++ b/.github/actions/update-version/action.yml @@ -10,6 +10,8 @@ runs: steps: - name: Update __version__ in aerospike module run: sed -i "s/const char version\[] = \".*\";/const char version\[] = \"${{ inputs.new_version }}\";/" src/main/aerospike.c + shell: bash - name: Update VERSION metadata run: echo ${{ inputs.new_version }} > VERSION + shell: bash