File tree 2 files changed +42
-0
lines changed
2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,7 @@ Below are links to the different packages:
7
7
[ happtiq_commons_gen_ai] ( https://github.com/happtiq/happtiq-oss-python-libs/tree/main/packages/happtiq_commons_gen_ai )
8
8
9
9
[ 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 `
Original file line number Diff line number Diff line change
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."
You can’t perform that action at this time.
0 commit comments