Skip to content

Commit 1a5f2a4

Browse files
release script (#13)
Co-authored-by: mab <[email protected]>
1 parent f7ee0ea commit 1a5f2a4

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ Below are links to the different packages:
77
[happtiq_commons_gen_ai](https://github.com/happtiq/happtiq-oss-python-libs/tree/main/packages/happtiq_commons_gen_ai)
88

99
[happtiq_commons_google_cloud](https://github.com/happtiq/happtiq-oss-python-libs/tree/main/packages/happtiq_commons_google_cloud)
10+
11+
## Release
12+
13+
run script `./release.sh`

release.sh

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#!/bin/bash
2+
3+
# Function to prompt for confirmation with Y as the default
4+
confirm() {
5+
read -p "$1 (Y/n): " choice
6+
choice=${choice:-y} # Default to 'y' if no input is provided
7+
case "$choice" in
8+
y|Y ) return 0;;
9+
* ) echo "Aborted."; exit 1;;
10+
esac
11+
}
12+
13+
# Function to validate semantic versioning
14+
validate_version() {
15+
if [[ ! $1 =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
16+
echo "Error: Version must follow semantic versioning (e.g., v1.0.0)."
17+
exit 1
18+
fi
19+
}
20+
21+
# Ask for the version number
22+
read -p "Enter the version number for the release (e.g., v1.0.0): " version
23+
24+
# Validate the version input
25+
validate_version "$version"
26+
27+
# Confirm the version input
28+
confirm "You entered version $version. Do you want to proceed?"
29+
30+
# Create a Git tag
31+
confirm "Create the Git tag $version?"
32+
git tag -a "$version" -m "Release $version"
33+
34+
# Push the Git tag to the repository
35+
confirm "Push the tag $version to the remote repository?"
36+
git push origin "$version"
37+
38+
echo "Release $version has been tagged and pushed successfully."

0 commit comments

Comments
 (0)