You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash -e
|
|
|
|
VERSION_FILE=VERSION
|
|
current=$(cat $VERSION_FILE)
|
|
tag=$((current + 1))
|
|
docker buildx build --platform linux/amd64,linux/arm64 -t docker.bassengvegen.com/openclaw:${tag} .
|
|
docker push docker.bassengvegen.com/openclaw:${tag}
|
|
echo $tag > $VERSION_FILE
|