From 83ff36c2f9a260bd1199ec1bfc1d13e7ad6eb43a Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Wed, 3 Sep 2025 13:03:16 -0400 Subject: [PATCH] Update vercel action files --- .github/workflows/vercel-preview.yaml | 8 ++++---- .github/workflows/vercel-production.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/vercel-preview.yaml b/.github/workflows/vercel-preview.yaml index a812b78..1059960 100644 --- a/.github/workflows/vercel-preview.yaml +++ b/.github/workflows/vercel-preview.yaml @@ -14,11 +14,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Install Vercel CLI + - name: "Install Vercel CLI" run: npm install --global vercel@latest - - name: Pull Vercel Environment Information + - name: "Pull Vercel Environment Information" run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} - - name: Build Project Artifacts + - name: "Build Project Artifacts" run: vercel build --token=${{ secrets.VERCEL_TOKEN }} - - name: Deploy Project Artifacts to Vercel + - name: "Deploy Project Artifacts to Vercel" run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} diff --git a/.github/workflows/vercel-production.yaml b/.github/workflows/vercel-production.yaml index 2bc2d32..67059d5 100644 --- a/.github/workflows/vercel-production.yaml +++ b/.github/workflows/vercel-production.yaml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Install Vercel CLI + - name: "Install Vercel CLI" run: npm install --global vercel@latest - - name: Pull Vercel Environment Information + - name: "Pull Vercel Environment Information" run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - - name: Build Project Artifacts + - name: "Build Project Artifacts" run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} - - name: Deploy Project Artifacts to Vercel + - name: "Deploy Project Artifacts to Vercel" run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}