mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-18 22:55:03 +00:00
Pin Memos to v0.25.3 - last version with release binaries (#11658)
* Pin Memos to v0.25.3 - last version with release binaries v0.26.0 removed release binaries (issue usememos/memos#5552) Pinning to v0.25.3 (Nov 25, 2025) which has 7 binary assets available This is a temporary solution until v0.27.0 releases with binaries as indicated by MickLesk in issue #11474 * Pin Memos scripts to v0.25.3 instead of latest Both CT update script and install script now explicitly use v0.25.3 instead of 'latest' to ensure binaries are available * Add version pin to check_for_gh_release in Memos CT Prevents the update check from looking for versions newer than v0.25.3
This commit is contained in:
committed by
GitHub
parent
48d743910a
commit
263cbbeb86
+2
-2
@@ -27,12 +27,12 @@ function update_script() {
|
||||
msg_error "No ${APP} Installation Found!"
|
||||
exit
|
||||
fi
|
||||
if check_for_gh_release "memos" "usememos/memos"; then
|
||||
if check_for_gh_release "memos" "usememos/memos" "v0.25.3"; then
|
||||
msg_info "Stopping service"
|
||||
systemctl stop memos
|
||||
msg_ok "Service stopped"
|
||||
|
||||
fetch_and_deploy_gh_release "memos" "usememos/memos" "prebuild" "latest" "/opt/memos" "memos*linux_amd64.tar.gz"
|
||||
fetch_and_deploy_gh_release "memos" "usememos/memos" "prebuild" "v0.25.3" "/opt/memos" "memos*linux_amd64.tar.gz"
|
||||
|
||||
msg_info "Starting service"
|
||||
systemctl start memos
|
||||
|
||||
Reference in New Issue
Block a user