From a46e697435b3f150c1afd6219394b526fa339f59 Mon Sep 17 00:00:00 2001 From: Benji Grant Date: Sat, 10 Jun 2023 12:02:43 +1000 Subject: [PATCH] Use NPM to install vercel cli --- .github/workflows/deploy_frontend.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/deploy_frontend.yml b/.github/workflows/deploy_frontend.yml index 242c757..f14ff2b 100644 --- a/.github/workflows/deploy_frontend.yml +++ b/.github/workflows/deploy_frontend.yml @@ -23,13 +23,8 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 18 - cache: yarn - cache-dependency-path: '**/yarn.lock' - name: Install Vercel CLI - run: yarn global install vercel@latest + run: npm install --global vercel@latest - name: Pull Vercel Environment Information run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - name: Build Project Artifacts