diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index 70a19c64a..b786329c2 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -4,6 +4,7 @@ on: push: branches: - main # or whatever branch you want to use + - dev jobs: release: diff --git a/backend/config.py b/backend/config.py index b9c387cf7..a11b105b7 100644 --- a/backend/config.py +++ b/backend/config.py @@ -75,7 +75,7 @@ def run_migrations(): from alembic.config import Config from alembic import command - alembic_cfg = Config("alembic.ini") + alembic_cfg = Config(BACKEND_DIR / "alembic.ini") command.upgrade(alembic_cfg, "head") except Exception as e: print(f"Error: {e}") diff --git a/package-lock.json b/package-lock.json index c32a7adf8..25164d636 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "open-webui", - "version": "0.3.16", + "version": "0.3.17.dev1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "open-webui", - "version": "0.3.16", + "version": "0.3.17.dev1", "dependencies": { "@codemirror/lang-javascript": "^6.2.2", "@codemirror/lang-python": "^6.1.6", @@ -8503,9 +8503,9 @@ } }, "node_modules/svelte": { - "version": "4.2.18", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.18.tgz", - "integrity": "sha512-d0FdzYIiAePqRJEb90WlJDkjUEx42xhivxN8muUBmfZnP+tzUgz12DJ2hRJi8sIHCME7jeK1PTMgKPSfTd8JrA==", + "version": "4.2.19", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.19.tgz", + "integrity": "sha512-IY1rnGr6izd10B0A8LqsBfmlT5OILVuZ7XsI0vdGPEvuonFV7NYEUK4dAkm9Zg2q0Um92kYjTpS1CAP3Nh/KWw==", "dependencies": { "@ampproject/remapping": "^2.2.1", "@jridgewell/sourcemap-codec": "^1.4.15", diff --git a/package.json b/package.json index 175830ef3..c16fad91c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "open-webui", - "version": "0.3.16", + "version": "0.3.17.dev1", "private": true, "scripts": { "dev": "npm run pyodide:fetch && vite dev --host", @@ -84,4 +84,4 @@ "node": ">=18.13.0 <=21.x.x", "npm": ">=6.0.0" } -} +} \ No newline at end of file