File tree Expand file tree Collapse file tree 8 files changed +17
-1
lines changed Expand file tree Collapse file tree 8 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 11#! /bin/sh
22
3+ set -eou pipefail
4+
35# simple changelog: get all commits beetween 2 tags and put them into file
46
57echo " Commits: " > changelog.md
Original file line number Diff line number Diff line change 11#! /bin/sh
22
3+ set -eou pipefail
4+
35# Create Pull Request (by default on current branch)
46gh pr create \
57 --title " Release ${VERSION} " \
Original file line number Diff line number Diff line change 11#! /bin/bash
2+
3+ set -eou pipefail
4+
25echo " ${INPUT_KUBE_CONFIG_DATA} " >> ./kube.config
36export KUBECONFIG=" ./kube.config"
47
Original file line number Diff line number Diff line change 11#! /bin/sh
22
3+ set -eou pipefail
4+
35target_dir=" deploy"
46mkdir -p " ${target_dir} "
57
Original file line number Diff line number Diff line change 11#! /bin/bash
2-
2+ set -eou pipefail
33
44export ATLAS_ORG_ID=" ${INPUT_ATLAS_ORG_ID} "
55export ATLAS_PUBLIC_KEY=" ${INPUT_ATLAS_PUBLIC_KEY} "
Original file line number Diff line number Diff line change 11#! /bin/sh
2+
3+ set -eou pipefail
4+
25# commit file to the destination branch
36
47MESSAGE=" generated $FILE_TO_COMMIT "
Original file line number Diff line number Diff line change 11#! /bin/sh
2+
3+ set -eou pipefail
4+
25# Setup tag name
36commit_id=$( git rev-parse --short HEAD)
47branch_name=$GITHUB_HEAD_REF
Original file line number Diff line number Diff line change 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 : |
You can’t perform that action at this time.
0 commit comments