diff --git a/.github/workflows/vercel-deploy.yml b/.github/workflows/vercel-deploy.yml index 7b1f0ce..6d9d98f 100644 --- a/.github/workflows/vercel-deploy.yml +++ b/.github/workflows/vercel-deploy.yml @@ -13,15 +13,14 @@ jobs: run: working-directory: ./apps/astro steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: "18.x" - - uses: oven-sh/setup-bun@v2 + node-version: '18.x' - name: Install Vercel CLI - run: bun install --global vercel@latest + run: npm install --global vercel@latest - name: Install Dependencies - run: bun install + run: npm install - name: Pull Vercel Environment Information run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - name: Build Project Artifacts