From fa57b7a1d391450e4a9e68afc720d0003d34924c Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 19 Mar 2026 21:18:02 +0100 Subject: [PATCH] NocoDB: Unpin Version to latest (#13094) * NocoDB: Unpin Version to latest Updated the nocodb.sh script to fetch the latest release instead of a specific version. * Update NocoDB installation script to use latest release * remove old echo Update NocoDB service file creation in install script. --- ct/nocodb.sh | 7 ++++--- install/nocodb-install.sh | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ct/nocodb.sh b/ct/nocodb.sh index 30d2a751d..ea0d9fdd4 100644 --- a/ct/nocodb.sh +++ b/ct/nocodb.sh @@ -23,17 +23,18 @@ function update_script() { header_info check_container_storage check_container_resources - RELEASE="0.301.1" + #RELEASE="0.301.1" if [[ ! -f /etc/systemd/system/nocodb.service ]]; then msg_error "No ${APP} Installation Found!" exit fi - if check_for_gh_release "nocodb" "nocodb/nocodb" "${RELEASE}"; then + #if check_for_gh_release "nocodb" "nocodb/nocodb" "${RELEASE}"; then + if check_for_gh_release "nocodb" "nocodb/nocodb"; then msg_info "Stopping Service" systemctl stop nocodb msg_ok "Stopped Service" - fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "${RELEASE}" "/opt/nocodb/" "Noco-linux-x64" + fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "latest" "/opt/nocodb/" "Noco-linux-x64" msg_info "Starting Service" systemctl start nocodb diff --git a/install/nocodb-install.sh b/install/nocodb-install.sh index fbd5b764c..81e31e7d8 100644 --- a/install/nocodb-install.sh +++ b/install/nocodb-install.sh @@ -13,11 +13,11 @@ setting_up_container network_check update_os -fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "0.301.1" "/opt/nocodb/" "Noco-linux-x64" +fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "latest" "/opt/nocodb/" "Noco-linux-x64" msg_info "Creating Service" cat </etc/systemd/system/nocodb.service -echo "[Unit] +[Unit] Description=nocodb [Service]