From 2687916e14b118b1d8d3122290e8529271ad29f1 Mon Sep 17 00:00:00 2001 From: jerry Date: Wed, 3 Jul 2024 16:44:58 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20vercel=20=EC=9E=90=EB=8F=99=20?= =?UTF-8?q?=EB=B0=B0=ED=8F=AC=20=EC=8A=A4=ED=81=AC=EB=A6=BD=ED=8A=B8=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/vercelDeploy.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/vercelDeploy.yml diff --git a/.github/workflows/vercelDeploy.yml b/.github/workflows/vercelDeploy.yml new file mode 100644 index 00000000..7fa58363 --- /dev/null +++ b/.github/workflows/vercelDeploy.yml @@ -0,0 +1,30 @@ +name: Synchronize to forked repo +on: + push: + branches: + - main + +jobs: + sync: + name: Sync forked repo + runs-on: ubuntu-latest + + steps: + - name: Checkout main + uses: actions/checkout@v4 + with: + token: ${{ secrets.DEPLOY_TOKEN }} + fetch-depth: 0 + ref: main + + - name: Add remote-url + run: | + git remote add forked-repo https://pepperdad:${{ secrets.DEPLOY_TOKEN }}@github.com/pepperdad/BEAT-Client + git config user.name pepperdad + git config user.email becomegoodguy@gmail.com + - name: Push changes to forked-repo + run: | + git push -f forked-repo main + - name: Clean up + run: | + git remote remove forked-repo From bd18f7379ac77d128b84978e76a1883005c8e493 Mon Sep 17 00:00:00 2001 From: jerry Date: Thu, 4 Jul 2024 01:24:21 +0900 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20vercel=20=EA=B2=BD=EB=A1=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vercel.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 00000000..3a48e56b --- /dev/null +++ b/vercel.json @@ -0,0 +1,3 @@ +{ + "rewrites": [{ "source": "/(.*)", "destination": "/" }] +}