We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e446a2f commit 1254103Copy full SHA for 1254103
aws/logs_monitoring/release.sh
@@ -89,6 +89,11 @@ if ! command -v gh >/dev/null 2>&1; then
89
log_error "gh not found, please install it following instructions here https://github.com/cli/cli?tab=readme-ov-file#installation"
90
fi
91
92
+# Before we start the release, ensure that Docker is running
93
+if ! docker info > /dev/null 2>&1; then
94
+ log_error "Docker is not running, please start it"
95
+fi
96
+
97
# Read the desired version
98
if [[ ! ${1} =~ [0-9]+\.[0-9]+\.[0-9]+ ]]; then
99
log_error "You must use a semantic version (e.g. 3.1.4)"
0 commit comments