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 }}