mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-06-12 02:04:38 -04:00
fix(ci): avoid herestrings as they are not supported by GitLab CI (/bin/sh)
This commit is contained in:
@@ -34,7 +34,9 @@ update-fdroid-repo:
|
||||
done
|
||||
|
||||
- |
|
||||
IFS=":" read -r vercode vername <<< "$($CI_PROJECT_DIR/scripts/get_latest_version.py $(find "$REPO_DIR" -name "*.apk"))"
|
||||
IFS=":" read vercode vername << EOF
|
||||
$($CI_PROJECT_DIR/scripts/get_latest_version.py $(find "$REPO_DIR" -name "*.apk"))
|
||||
EOF
|
||||
sed -i \
|
||||
-e "s/CurrentVersion: .*/CurrentVersion: \"$vername\"/" \
|
||||
-e "s/CurrentVersionCode: .*/CurrentVersionCode: $vercode/" $META_FILE
|
||||
|
||||
Reference in New Issue
Block a user