diff --git a/.github/actions/create-pr/entrypoint.sh b/.github/actions/create-pr/entrypoint.sh index ff4203802d..d8737f121b 100644 --- a/.github/actions/create-pr/entrypoint.sh +++ b/.github/actions/create-pr/entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/sh -set -eou pipefail +# set -eou pipefail # Create Pull Request (by default on current branch) gh pr create \ diff --git a/.github/actions/gen-install-scripts/entrypoint.sh b/.github/actions/gen-install-scripts/entrypoint.sh index 456d410b8e..fc15430100 100644 --- a/.github/actions/gen-install-scripts/entrypoint.sh +++ b/.github/actions/gen-install-scripts/entrypoint.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash set -eou pipefail diff --git a/.github/actions/int-test/entrypoint.sh b/.github/actions/int-test/entrypoint.sh index ccf447fb7a..b3998ae257 100644 --- a/.github/actions/int-test/entrypoint.sh +++ b/.github/actions/int-test/entrypoint.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -eou pipefail +#set -eou pipefail export ATLAS_ORG_ID="${INPUT_ATLAS_ORG_ID}" export ATLAS_PUBLIC_KEY="${INPUT_ATLAS_PUBLIC_KEY}" diff --git a/.github/actions/push-files/entrypoint.sh b/.github/actions/push-files/entrypoint.sh index 193ca9afab..763f0a6a0e 100644 --- a/.github/actions/push-files/entrypoint.sh +++ b/.github/actions/push-files/entrypoint.sh @@ -1,6 +1,6 @@ -#!/bin/sh +#!/bin/bash -set -eou pipefail +#set -eou pipefail #commit file to the destination branch diff --git a/.github/actions/set-tag/entrypoint.sh b/.github/actions/set-tag/entrypoint.sh index 8a8b079287..ed1a9ddeba 100644 --- a/.github/actions/set-tag/entrypoint.sh +++ b/.github/actions/set-tag/entrypoint.sh @@ -1,10 +1,10 @@ #!/bin/sh -set -eou pipefail +#set -eou pipefail # Setup tag name commit_id=$(git rev-parse --short HEAD) -branch_name=$GITHUB_HEAD_REF +branch_name=${GITHUB_HEAD_REF-} if [ -z "${branch_name}" ]; then branch_name=$(echo "$GITHUB_REF" | awk -F'/' '{print $3}') fi