Timothy J. Baek 8 months ago
parent
commit
08efabc696
4 changed files with 9 additions and 8 deletions
  1. 1 0
      .github/workflows/release-pypi.yml
  2. 1 1
      backend/config.py
  3. 5 5
      package-lock.json
  4. 2 2
      package.json

+ 1 - 0
.github/workflows/release-pypi.yml

@@ -4,6 +4,7 @@ on:
   push:
     branches:
       - main # or whatever branch you want to use
+      - dev
 
 jobs:
   release:

+ 1 - 1
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}")

+ 5 - 5
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",

+ 2 - 2
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"
 	}
-}
+}