2022-08-24 05:48:13 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
if [[ $# -eq 0 ]] ; then
|
|
|
|
echo "Missing argument of new version"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
VERSION=$1
|
|
|
|
|
|
|
|
if ! [[ ${VERSION} =~ ^[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}(-.+)?$ ]] ;
|
|
|
|
then
|
|
|
|
echo "Version ${VERSION} isn't in format X.Y.Z"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-09-13 05:14:00 +08:00
|
|
|
VERSION_DATE=$(git log -1 --format=%aI "v${VERSION}" | cut -c -10)
|
|
|
|
VERSION_COMMIT=$(git rev-list -n 1 "v${VERSION}")
|
|
|
|
|
2022-08-24 05:48:13 +08:00
|
|
|
# expecting the directory at a specific path
|
|
|
|
cd ~/trilium-flathub
|
|
|
|
|
|
|
|
if ! git diff-index --quiet HEAD --; then
|
|
|
|
echo "There are uncommitted changes"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-09-13 05:14:00 +08:00
|
|
|
if [[ "$VERSION" == *"beta"* ]]; then
|
2022-09-13 04:35:22 +08:00
|
|
|
git switch beta
|
|
|
|
else
|
|
|
|
git switch master
|
|
|
|
fi
|
|
|
|
|
|
|
|
git pull
|
|
|
|
|
|
|
|
echo "Updating files with version ${VERSION}, date ${VERSION_DATE} and commit ${VERSION_COMMIT}"
|
|
|
|
|
2022-08-27 05:52:09 +08:00
|
|
|
flatpak-node-generator npm ../trilium/package-lock.json
|
2022-08-24 05:48:13 +08:00
|
|
|
|
2022-08-27 05:52:09 +08:00
|
|
|
xmlstarlet ed --inplace --update "/component/releases/release/@version" --value "${VERSION}" --update "/component/releases/release/@date" --value "${VERSION_DATE}" ./com.github.zadam.trilium.metainfo.xml
|
|
|
|
|
|
|
|
yq --inplace "(.modules[0].sources[0].tag = \"v${VERSION}\") | (.modules[0].sources[0].commit = \"${VERSION_COMMIT}\")" ./com.github.zadam.trilium.yml
|
|
|
|
|
|
|
|
git add ./generated-sources.json
|
|
|
|
git add ./com.github.zadam.trilium.metainfo.xml
|
|
|
|
git add ./com.github.zadam.trilium.yml
|
2022-08-24 05:48:13 +08:00
|
|
|
|
|
|
|
git commit -m "release $VERSION"
|
|
|
|
git push
|