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

Fix release limit in update_release_tags

parent 5d7ce2c1
No related branches found
No related tags found
No related merge requests found
Pipeline #14140 passed
...@@ -37,7 +37,7 @@ update_release_tags: ...@@ -37,7 +37,7 @@ update_release_tags:
git config --global user.name "autoupdater" git config --global user.name "autoupdater"
cat config/apps | \ cat config/apps | \
while read app_id; do 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 while read version; do
git tag "release/$app_id/$version" || true # don't fail if tags exists git tag "release/$app_id/$version" || true # don't fail if tags exists
done done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment