mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-05-19 05:58:11 -04:00
ironfox-oss/IronFox!131 # IronFox 148.0.2.1 ____ ## Changes - Fixed a critical bug that prevented the onboarding from working as expected for new users. - Other minor tweaks and adjustments. MR-author: celenity <celenity@celenity.dev> Approved-by: celenity <celenity@celenity.dev> Merged-by: celenity <celenity@celenity.dev>
48 lines
1.8 KiB
Bash
48 lines
1.8 KiB
Bash
#!/bin/bash
|
|
|
|
# Script is used to update the F-Droid repository
|
|
# This script is expected to be run in a CI environment
|
|
# DO NOT execute this manually!
|
|
|
|
set -eu
|
|
|
|
git clone --recurse-submodules "https://${IF_CI_USERNAME}:${GITLAB_CI_PUSH_TOKEN}@gitlab.com/${FDROID_REPO_PATH}.git" fdroid
|
|
pushd fdroid || { echo "Unable to pushd into 'fdroid'"; exit 1; };
|
|
mkdir -vp "${REPO_DIR_PATH}"
|
|
git lfs install
|
|
|
|
# Download all assets from the release
|
|
curl --header "PRIVATE-TOKEN: ${GITLAB_CI_API_TOKEN}" \
|
|
"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/releases/${CI_COMMIT_TAG}/assets/links" \
|
|
| jq -c '.[] | select(.name | endswith(".apk") and (endswith("universal.apk") | not))' \
|
|
| while read -r asset; do
|
|
name=$(echo "${asset}" | jq -r '.name')
|
|
url=$(echo "${asset}" | jq -r '.direct_asset_url')
|
|
echo "Downloading ${name} from ${url}"
|
|
curl -L --header "PRIVATE-TOKEN: ${GITLAB_CI_API_TOKEN}" "${url}" -o "${REPO_DIR_PATH}/${name}"
|
|
done
|
|
|
|
IFS=":" read -r vercode vername <<< "$("${CI_PROJECT_DIR}"/scripts/get_latest_version.py $(ls "${REPO_DIR_PATH}"/*.apk))"
|
|
|
|
META_FILE_PATH="${META_DIR_PATH}/${META_FILE_NAME}"
|
|
|
|
sed -i \
|
|
-e "s/CurrentVersion: .*/CurrentVersion: \"v${vername}\"/" \
|
|
-e "s/CurrentVersionCode: .*/CurrentVersionCode: ${vercode}/" "${META_FILE_PATH}"
|
|
|
|
pushd "${META_DIR_PATH}" || { echo "Unable to pushd into '${META_DIR_PATH}'"; exit 1; }
|
|
|
|
# Update metadata repository
|
|
git add "${META_FILE_NAME}"
|
|
git commit -m "feat: update for release ${CI_COMMIT_TAG}"
|
|
git push origin "HEAD:${META_REPO_BRANCH}"
|
|
|
|
popd || { echo "Unable to popd from '${META_DIR_PATH}'"; exit 1; }
|
|
|
|
# Update F-Droid repository
|
|
git add "${REPO_DIR_PATH}" "${META_DIR_PATH}"
|
|
git commit -m "feat: update for release ${CI_COMMIT_TAG}"
|
|
git push origin "HEAD:${FDROID_REPO_BRANCH}"
|
|
|
|
popd # ignore error
|