ci: change version

This commit is contained in:
GuoQing Zhang
2026-08-11 15:45:25 +08:00
parent 09b9b4d8f1
commit 2d4d0c9393
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -81,7 +81,7 @@ services:
backend:
container_name: bisheng-backend
image: dataelement/bisheng-backend:v2.6.0-fix
image: dataelement/bisheng-backend:v2.6.0-fix2
ports:
- "7860:7860"
environment:
@@ -123,7 +123,7 @@ services:
backend_worker:
container_name: bisheng-backend-worker
image: dataelement/bisheng-backend:v2.6.0-fix
image: dataelement/bisheng-backend:v2.6.0-fix2
environment:
TZ: Asia/Shanghai
BS_SSO_SYNC__GATEWAY_HMAC_SECRET: "bisheng-local-hmac-20260422"
@@ -156,7 +156,7 @@ services:
frontend:
container_name: bisheng-frontend
image: dataelement/bisheng-frontend:v2.6.0-fix
image: dataelement/bisheng-frontend:v2.6.0-fix2
ports:
- "3001:3001"
environment:
+1 -1
View File
@@ -4,7 +4,7 @@ from importlib import metadata
try:
# SetujuciGo to automatic modification
__version__ = '2.6.0-fix'
__version__ = '2.6.0-fix2'
except metadata.PackageNotFoundError:
# Case where package metadata is not available.
__version__ = ''
+2 -2
View File
@@ -1,7 +1,7 @@
#! /bin/bash
old_version="2.6.0"
new_version="2.6.0-fix"
old_version="2.6.0-fix"
new_version="2.6.0-fix2"
sed -i.bak "s/$old_version/$new_version/g" ./docker/docker-compose.yml
sed -i.bak "s/$old_version/$new_version/g" ./src/backend/pyproject.toml
sed -i.bak "s/$old_version/$new_version/g" ./src/backend/bisheng/__init__.py