using latest stable n8n version
All checks were successful
Build Pipeline for de.captica.n8n / resolve_n8n_version (push) Successful in 2s
Build Pipeline for de.captica.n8n / publish_docker (push) Successful in 4m15s

This commit is contained in:
Tobias Lehmann
2026-03-25 11:52:55 +01:00
parent 0a97f50bb1
commit daa8a135e2

View File

@@ -16,8 +16,10 @@ jobs:
id: get_version id: get_version
shell: bash shell: bash
run: | run: |
VERSION="2.13.2" # define a fixed version
#VERSION="$(npm view n8n version)" # using last stable 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 "Using version=$VERSION"
echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT" echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT"