From daa8a135e2ce086cd9c39c1fc96e12993534f173 Mon Sep 17 00:00:00 2001 From: Tobias Lehmann Date: Wed, 25 Mar 2026 11:52:55 +0100 Subject: [PATCH] using latest stable n8n version --- .gitea/workflows/pipeline-build.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pipeline-build.yaml b/.gitea/workflows/pipeline-build.yaml index ccb75c7..45fbf04 100644 --- a/.gitea/workflows/pipeline-build.yaml +++ b/.gitea/workflows/pipeline-build.yaml @@ -16,8 +16,10 @@ jobs: id: get_version shell: bash run: | - VERSION="2.13.2" - #VERSION="$(npm view n8n version)" # using last stable version + # define a fixed version + #VERSION="2.13.2" + # or use npm to get the latest stable version + VERSION="$(npm view n8n version stable)" echo "Using version=$VERSION" echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT"