From 54953c7961c1516235dba47ec5b9a2d1e0cbf07e Mon Sep 17 00:00:00 2001 From: Robert Schardt Date: Fri, 20 Sep 2024 15:01:08 +0200 Subject: [PATCH] Fix: determine-tags-action by adding shell attribute to steps --- .github/actions/determine-tags-action/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/determine-tags-action/action.yml b/.github/actions/determine-tags-action/action.yml index 7efd2f05..c83a0a2f 100644 --- a/.github/actions/determine-tags-action/action.yml +++ b/.github/actions/determine-tags-action/action.yml @@ -8,6 +8,7 @@ runs: echo "IS_VERSION_TAG=${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }}" >> $GITHUB_ENV # set defaults echo "IS_LATEST_TAG=false" >> $GITHUB_ENV + shell: bash - name: "set IS_LATEST_TAG" if: ( env.IS_VERSION_TAG ) run: | @@ -28,3 +29,4 @@ runs: # set this tag to latest and stable echo "IS_LATEST_TAG=true" >> $GITHUB_ENV fi + shell: bash