diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54f8f9f..8ab00b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,10 +33,10 @@ jobs: run: npm install --global vercel@canary - name: Pull Vercel Environment Information - run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} + run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - name: Build Project Artifacts - run: vercel build --token=${{ secrets.VERCEL_TOKEN }} + run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} - name: Upload uses: actions/upload-artifact@v4 @@ -55,7 +55,7 @@ jobs: run: npm install --global vercel@canary - name: Pull Vercel Environment Information - run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} + run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - uses: actions/download-artifact@v4 with: @@ -63,4 +63,4 @@ jobs: path: .vercel/ - name: Deploy Project Artifacts to Vercel - run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} + run: vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }}