Compare commits

...

3 Commits

Author SHA1 Message Date
MickLesk
df24536bcb Add version pin to check_for_gh_release in Memos CT
Prevents the update check from looking for versions newer than v0.25.3
2026-02-07 18:14:37 +01:00
MickLesk
4599b92121 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
2026-02-07 18:13:15 +01:00
MickLesk
e7f2ee570f 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
2026-02-07 18:09:58 +01:00
3 changed files with 6 additions and 6 deletions

View File

@@ -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

View File

@@ -774,9 +774,9 @@
{
"slug": "memos",
"repo": "usememos/memos",
"version": "v0.26.0",
"pinned": false,
"date": "2026-01-31T15:28:09Z"
"version": "v0.25.3",
"pinned": true,
"date": "2025-11-25T00:00:00Z"
},
{
"slug": "metube",

View File

@@ -14,7 +14,7 @@ setting_up_container
network_check
update_os
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"
mkdir -p /opt/memos_data
msg_info "Creating Service"