Compare commits

...

4 Commits

Author SHA1 Message Date
MickLesk
63ad9440e4 Add version pin to check_for_gh_release in NocoDB CT
Prevents the update check from looking for versions newer than 0.301.1
2026-02-07 18:15:26 +01:00
MickLesk
18ec4692d1 Remove version pin note from nocodb.json (handled in github-versions.json) 2026-02-07 17:51:00 +01:00
MickLesk
19494a2dcc Pin NocoDB version to 0.301.1 in github-versions.json 2026-02-07 17:50:26 +01:00
MickLesk
90e3e3139d Pin NocoDB to version 0.301.1 due to ipaddr.js module error in 0.301.2 2026-02-07 17:49:23 +01:00
3 changed files with 5 additions and 5 deletions

View File

@@ -27,12 +27,12 @@ function update_script() {
msg_error "No ${APP} Installation Found!"
exit
fi
if check_for_gh_release "nocodb" "nocodb/nocodb"; then
if check_for_gh_release "nocodb" "nocodb/nocodb" "0.301.1"; then
msg_info "Stopping Service"
systemctl stop nocodb
msg_ok "Stopped Service"
fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "latest" "/opt/nocodb/" "Noco-linux-x64"
fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "0.301.1" "/opt/nocodb/" "Noco-linux-x64"
msg_info "Starting Service"
systemctl start nocodb

View File

@@ -851,8 +851,8 @@
{
"slug": "nocodb",
"repo": "nocodb/nocodb",
"version": "0.301.2",
"pinned": false,
"version": "0.301.1",
"pinned": true,
"date": "2026-01-21T16:23:04Z"
},
{

View File

@@ -13,7 +13,7 @@ setting_up_container
network_check
update_os
fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "latest" "/opt/nocodb/" "Noco-linux-x64"
fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "0.301.1" "/opt/nocodb/" "Noco-linux-x64"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/nocodb.service