diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2ad6010b8524d2103d66d727dda514ee752feb2c..ac2d1024ca4fb5112226e4271d5edfd808e606c1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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