Compare commits

...

2 commits

Author SHA1 Message Date
Benjamin Renard
cfdb452239
Release 8.0.2 2024-08-30 08:54:06 +02:00
Benjamin Renard
a849e5c472
publish_new_release.sh: add git pull 2024-08-30 08:53:58 +02:00
2 changed files with 6 additions and 2 deletions

View file

@ -1 +1 @@
8.0.1
8.0.2

View file

@ -24,6 +24,11 @@ then
apt install -y ${#MISSING_PACKAGES[@]}
fi
cd $ROOT_DIR
echo "Update git repo:"
git pull
echo "done."
LATEST="$1"
if [ -z "$LATEST" ]
@ -40,7 +45,6 @@ echo "Press [enter] to create and publish this new release"
read
echo "Create new release..."
cd $ROOT_DIR
echo -n "$LATEST" > last_release.txt
/usr/bin/git add last_release.txt
/usr/bin/git commit -m "Release $LATEST"