chore: use beta tag instead of fixed version for develop branch

This commit is contained in:
Yury Kossakovsky
2025-12-11 14:17:08 -07:00
parent 5a786f9a15
commit f74e3af697
2 changed files with 4 additions and 4 deletions

View File

@@ -179,7 +179,7 @@ RUN_N8N_IMPORT=
# n8n version (used for both n8n and task runner images)
# Update this when upgrading n8n to ensure runner version matches
N8N_VERSION=2.0.1
N8N_VERSION=beta
# Number of n8n worker-runner pairs to generate.
# Each worker gets its own dedicated task runner sidecar.

View File

@@ -52,12 +52,12 @@ switch-beta:
git checkout develop
@if [ -f .env ]; then \
if grep -q '^N8N_VERSION=' .env; then \
sed -i.bak 's/^N8N_VERSION=.*/N8N_VERSION=2.0.1/' .env && rm -f .env.bak; \
sed -i.bak 's/^N8N_VERSION=.*/N8N_VERSION=beta/' .env && rm -f .env.bak; \
else \
echo 'N8N_VERSION=2.0.1' >> .env; \
echo 'N8N_VERSION=beta' >> .env; \
fi; \
fi
@echo "N8N_VERSION set to 2.0.1"
@echo "N8N_VERSION set to beta"
sudo bash ./scripts/update.sh
switch-stable: