Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions aws/logs_monitoring/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ if ! command -v gh >/dev/null 2>&1; then
log_error "gh not found, please install it following instructions here https://github.com/cli/cli?tab=readme-ov-file#installation"
fi

# Before we start the release, ensure that Docker is running
if ! docker info > /dev/null 2>&1; then
log_error "Docker is not running, please start it"
fi

# Read the desired version
if [[ ! ${1} =~ [0-9]+\.[0-9]+\.[0-9]+ ]]; then
log_error "You must use a semantic version (e.g. 3.1.4)"
Expand Down
Loading