From 2cc0c738ed64c4633c7f01f03721fecd1c491c4c Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 19 Mar 2026 17:35:56 +0100 Subject: [PATCH] NocoDB: Unpin Version to latest Updated the nocodb.sh script to fetch the latest release instead of a specific version. --- ct/nocodb.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 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