From 161f62c02db0c536078d9c820650f0f92d68b839 Mon Sep 17 00:00:00 2001 From: Antonio Pagano Date: Sat, 8 Jun 2024 10:48:58 -0500 Subject: [PATCH] task: copying to .vercel/output --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 942b850..91a2500 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,9 +46,11 @@ jobs: id: deployment uses: actions/deploy-pages@v4 + # Push our generated site to vercel - name: Install Vercel CLI run: npm install --global vercel@latest - # Push our generated site to vercel + - name: Copy output + run: mkdir -a .vercel/output && cp -r public/* .vercel/output - name: Pull Vercel Environment Information run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - name: Deploy Project Artifacts to Vercel