From bf6f353e9575b12c596827f4d6862698f9b76f04 Mon Sep 17 00:00:00 2001 From: Ry0taK <49341894+Ry0taK@users.noreply.github.com> Date: Sat, 22 Jun 2024 16:30:46 +0900 Subject: [PATCH] =?UTF-8?q?=E7=B6=9A=E3=80=85=E3=81=A8=E5=A4=89=E6=9B=B4?= =?UTF-8?q?=E3=81=95=E3=82=8C=E3=82=8B=E7=B6=99=E7=B6=9A=E7=9A=84=E3=82=A4?= =?UTF-8?q?=E3=83=B3=E3=83=86=E3=82=B0=E3=83=AC=E3=83=BC=E3=82=B7=E3=83=A7?= =?UTF-8?q?=E3=83=B32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/scripts/sync-database.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/sync-database.js b/.github/scripts/sync-database.js index 678de8a..ef51a10 100644 --- a/.github/scripts/sync-database.js +++ b/.github/scripts/sync-database.js @@ -13,6 +13,7 @@ function checkoutBranch(branch) { cp.execFileSync('git', ['checkout', branch]); } catch (e) { cp.execFileSync('git', ['checkout', '-b', branch]); + cp.execFileSync('git', ['push', '-u', 'origin', branch]); } cp.execSync('git pull'); }