Skip to content
Snippets Groups Projects
Commit 85f0f5c1 authored by Julian's avatar Julian
Browse files

Fix release limit in update_release_tags

......@@ -37,7 +37,7 @@ update_release_tags:
git config --global user.name "autoupdater"
cat config/apps | \
while read app_id; do
python3 scripts/appstore.py get-releases "$app_id" | tail -n 2 | \
python3 scripts/appstore.py get-releases "$app_id" | head -n 2 | \
while read version; do
git tag "release/$app_id/$version" || true # don't fail if tags exists
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment