From f1cc0ca35cc04f5d6e163bcf6d92c2b8a2a96ac7 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Wed, 1 Jul 2026 17:18:24 +0900 Subject: [PATCH] fix: include db/migrations in publish package Problem: Migrations were copied to ./publish/migrations but app looks for db/migrations Solution: Copy to ./publish/db/migrations to match working directory structure This ensures V020, V021, V022 migrations run automatically on app startup. --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 2ca9a83..18334a1 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -75,7 +75,7 @@ jobs: test -s ./publish/proxy/TaxBaik.Proxy.runtimeconfig.json || { echo "TaxBaik.Proxy.runtimeconfig.json missing" >&2; exit 1; } - name: Copy migrations - run: cp -r db/migrations ./publish/migrations || true + run: mkdir -p ./publish/db && cp -r db/migrations ./publish/db/ || true - name: Generate build info run: |