Commit 0c943bcd authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #6048 from ethereum-optimism/clabby/ci-builder-release-fix

chore(ops): Fix ci-builder release action
parents 0c1a113d 270c7b31
......@@ -6,7 +6,7 @@ DOCKER_REPO=$1
GIT_TAG=$2
GIT_SHA=$3
IMAGE_NAME=$(echo "$GIT_TAG" | grep -Eow '^(fault-detector|proxyd|indexer|op-[a-z0-9\-]*)' || true)
IMAGE_NAME=$(echo "$GIT_TAG" | grep -Eow '^(ci-builder|fault-detector|proxyd|indexer|op-[a-z0-9\-]*)' || true)
if [ -z "$IMAGE_NAME" ]; then
echo "image name could not be parsed from git tag '$GIT_TAG'"
exit 1
......
......@@ -16,6 +16,7 @@ MIN_VERSIONS = {
'proxyd': '3.16.0',
'indexer': '0.5.0',
'fault-detector': '0.6.3'
'ci-builder': '0.6.0'
}
VALID_BUMPS = ('major', 'minor', 'patch', 'prerelease', 'finalize-prerelease')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment