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"