File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -e
3
3
4
- # TODO: should this always assume that release X.Y.Z will always be created from X.Y.Z-SNAPSHOT"?
4
+ # This script assumes that release X.Y.Z will always be created from X.Y.Z-SNAPSHOT"
5
5
echo " Replace snapshot version with release version ${RELEASE_VERSION} in build.gradle"
6
6
sed --in-place " s/version = '.*-SNAPSHOT'/version = '${RELEASE_VERSION} '/g" build.gradle
7
7
Original file line number Diff line number Diff line change 79
79
git config user.email "${GIT_AUTHOR_EMAIL}"
80
80
81
81
# This step bumps version numbers in build.gradle and creates git artifacts for the release
82
- # TODO: this could leverage the git-sign action with some minor changes
83
- # See https://github.com/mongodb-labs/drivers-github-tools/tree/main?tab=readme-ov-file#git-sign
84
82
- name : " Bump version numbers and create release tag"
85
83
run : .github/workflows/bump-and-tag.sh
86
84
You can’t perform that action at this time.
0 commit comments