From d0aa8d25e21d05b555c7ce4b75165a4da76d21e9 Mon Sep 17 00:00:00 2001 From: Noel Date: Fri, 24 Nov 2023 12:23:31 +0100 Subject: [PATCH] ci: fix deploy-website --- .github/workflows/deploy-website.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index e0b2c2857..842713510 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -16,6 +16,14 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 + - name: Install Node.js v18 + uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Install dependencies + uses: ./packages/actions/src/pnpmCache + - name: Pull vercel production environment run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}