Skip to content

Commit 37f311f

Browse files
author
Anton
authored
Fix release (#101)
1 parent a5d89a2 commit 37f311f

File tree

8 files changed

+17
-1
lines changed

8 files changed

+17
-1
lines changed

.github/actions/changelog/entrypoint.sh

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

3+
set -eou pipefail
4+
35
# simple changelog: get all commits beetween 2 tags and put them into file
46

57
echo "Commits: " > changelog.md

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

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

3+
set -eou pipefail
4+
35
# Create Pull Request (by default on current branch)
46
gh pr create \
57
--title "Release ${VERSION}" \

.github/actions/deploy/entrypoint.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
3+
set -eou pipefail
4+
25
echo "${INPUT_KUBE_CONFIG_DATA}" >> ./kube.config
36
export KUBECONFIG="./kube.config"
47

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

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

3+
set -eou pipefail
4+
35
target_dir="deploy"
46
mkdir -p "${target_dir}"
57

.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-
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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/sh
2+
3+
set -eou pipefail
4+
25
#commit file to the destination branch
36

47
MESSAGE="generated $FILE_TO_COMMIT"

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/sh
2+
3+
set -eou pipefail
4+
25
# Setup tag name
36
commit_id=$(git rev-parse --short HEAD)
47
branch_name=$GITHUB_HEAD_REF

.github/workflows/release-branch.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
uses: ./.github/actions/gen-install-scripts
2929
with:
3030
IMAGE_URL: ${{ secrets.DOCKER_RELEASE_REPO }}:${{ env.VERSION }}
31+
ENV: default
3132

3233
- name: Create branch and push it
3334
run: |

0 commit comments

Comments
 (0)