From 28f85e7be401c86040899a00f1aee2dccfe65419 Mon Sep 17 00:00:00 2001 From: Michael Marszalek Date: Wed, 6 Sep 2023 13:53:15 +0200 Subject: [PATCH] ci: :construction_worker: Try to fix Vercel install in ci scripts --- .github/workflows/storefront-deploy.yml | 2 +- .github/workflows/storefront-preview.yml | 2 +- .github/workflows/storybook-preview.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/storefront-deploy.yml b/.github/workflows/storefront-deploy.yml index c4fbeb5ba7..13c40545ec 100644 --- a/.github/workflows/storefront-deploy.yml +++ b/.github/workflows/storefront-deploy.yml @@ -27,7 +27,7 @@ jobs: run: yarn build - name: Install Vercel CLI - run: yarn global add vercel@latest + run: yarn add vercel@latest - name: Pull Vercel Environment Information run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} diff --git a/.github/workflows/storefront-preview.yml b/.github/workflows/storefront-preview.yml index aaaba96486..859e51115d 100644 --- a/.github/workflows/storefront-preview.yml +++ b/.github/workflows/storefront-preview.yml @@ -26,7 +26,7 @@ jobs: run: yarn build - name: Install Vercel CLI - run: yarn global add vercel@latest + run: yarn add vercel@latest - name: Pull Vercel Environment Information run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} diff --git a/.github/workflows/storybook-preview.yml b/.github/workflows/storybook-preview.yml index dc57781951..54c135edca 100644 --- a/.github/workflows/storybook-preview.yml +++ b/.github/workflows/storybook-preview.yml @@ -26,7 +26,7 @@ jobs: run: yarn build - name: Install Vercel CLI - run: npm install --global vercel@latest + run: yarn add vercel@latest - name: Pull Vercel Environment Information run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}