mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
9e56d69599
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3659 Co-authored-by: Vishnu Bharathi <4211715+scriptnull@users.noreply.github.com> GitOrigin-RevId: 8ddc98a2c06f64ae86f3a011f79f93e7c15161a0
50 lines
1.7 KiB
Bash
Executable File
50 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# post-release.sh
|
|
#
|
|
# Used after a release to update the latest stable version
|
|
# at various places in our codebase
|
|
#
|
|
# Usage: ./post-release.sh <oss_tag>
|
|
#
|
|
# Example: ./post-release.sh v2.2.0
|
|
#
|
|
|
|
set -e
|
|
|
|
# get the repo root
|
|
ROOT="$(readlink -f "${BASH_SOURCE[0]%/*}/../")"
|
|
|
|
TAG="$1"
|
|
|
|
if [ -z "$TAG" ]; then
|
|
echo "Usage: ./post-release.sh <oss_tag>"
|
|
exit 1
|
|
fi
|
|
|
|
# replace the image version with latest tag for all references in install-manifests
|
|
find "$ROOT/install-manifests" \
|
|
-type f -exec sed -i -E \
|
|
's#(hasura/graphql-engine:)v(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(\-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?(\+[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?(.*)*$#\1'"${TAG}"'\9#' {} \;
|
|
|
|
# update version in CLI installation instructions
|
|
sed -i -E 's#(.*)v(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(\-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?(\+[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?(.*)*$#\1'"${TAG}"'\9#' \
|
|
"${ROOT}/cli/README.md" \
|
|
"${ROOT}/cli/get.sh" \
|
|
"${ROOT}/docs/graphql/core/hasura-cli/install-hasura-cli.rst"
|
|
|
|
# update version in CI image scanning tags
|
|
sed -i -E 's#v(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)#'"${TAG}"'#' \
|
|
"${ROOT}/.buildkite/pipeline-gen/pipeline/scan_graphql_engine_images.go" \
|
|
"${ROOT}/.buildkite/pipeline-gen/pipeline/scan_graphql_engine_pro_images.go"
|
|
|
|
|
|
git add "$ROOT/install-manifests" \
|
|
"${ROOT}/cli" \
|
|
"${ROOT}/docs/graphql/core/hasura-cli/install-hasura-cli.rst" \
|
|
"${ROOT}/.buildkite/pipeline-gen/pipeline/scan_graphql_engine_images.go" \
|
|
"${ROOT}/.buildkite/pipeline-gen/pipeline/scan_graphql_engine_pro_images.go"
|
|
|
|
git commit -m "ci: update latest stable release as $TAG"
|
|
|
|
echo "updated $TAG" |