From 6f8323bcac0287a1cbdc7a50d827a389df143661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogumi=C5=82?= <47248711+milewskibogumil@users.noreply.github.com> Date: Sat, 21 Dec 2024 12:32:15 +0100 Subject: [PATCH] change bun to npm in vercel-deploy workflow --- .github/workflows/vercel-deploy.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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