Skip to content

Commit

Permalink
chore(scripts): update version in build_container.sh
Browse files Browse the repository at this point in the history
Signed-off-by: Sandro-Alessio Gierens <[email protected]>
  • Loading branch information
gierens committed Dec 29, 2024
1 parent 0efa8d6 commit cf30d78
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scripts/build_container.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=0.5.0
VERSION=0.6.0

docker build \
--tag "gierens/lrzcc:v${VERSION}" \
Expand All @@ -16,8 +16,7 @@ fi

read -p "Publish container? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
if [[ $REPLY =~ ^[Yy]$ ]]; then
docker push "gierens/lrzcc:v${VERSION}"
docker push "gierens/lrzcc:latest"
fi

0 comments on commit cf30d78

Please sign in to comment.