Skip to content

Commit 3e09a0d

Browse files
author
Anton
authored
Release fix 2 (#102)
1 parent 37f311f commit 3e09a0d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/actions/create-pr/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
set -eou pipefail
3+
# set -eou pipefail
44

55
# Create Pull Request (by default on current branch)
66
gh pr create \

.github/actions/gen-install-scripts/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
set -eou pipefail
44

.github/actions/int-test/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
set -eou pipefail
2+
#set -eou pipefail
33

44
export ATLAS_ORG_ID="${INPUT_ATLAS_ORG_ID}"
55
export ATLAS_PUBLIC_KEY="${INPUT_ATLAS_PUBLIC_KEY}"

.github/actions/push-files/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

3-
set -eou pipefail
3+
#set -eou pipefail
44

55
#commit file to the destination branch
66

.github/actions/set-tag/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/sh
22

3-
set -eou pipefail
3+
#set -eou pipefail
44

55
# Setup tag name
66
commit_id=$(git rev-parse --short HEAD)
7-
branch_name=$GITHUB_HEAD_REF
7+
branch_name=${GITHUB_HEAD_REF-}
88
if [ -z "${branch_name}" ]; then
99
branch_name=$(echo "$GITHUB_REF" | awk -F'/' '{print $3}')
1010
fi

0 commit comments

Comments
 (0)