From 2634c7345f848bf95335a856113889dc05f1cf5e Mon Sep 17 00:00:00 2001 From: Ali Akbar <116874053+aliakbar-deriv@users.noreply.github.com> Date: Wed, 29 Jan 2025 16:49:00 +0400 Subject: [PATCH] ci: removed cache vercel dependencies (#8) --- .github/workflows/deploy-preview.yml | 8 -------- .github/workflows/deploy-production.yml | 8 -------- 2 files changed, 16 deletions(-) diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index ab15525..41cd1c0 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -30,14 +30,6 @@ jobs: - name: Install Vercel Command Line Tools run: npm install --global vercel@latest - - name: Cache Vercel Dependencies - uses: actions/cache@v4 - with: - path: ~/.vercel - key: vercel-cache-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - vercel-cache-${{ runner.os }}- - - name: Fetch Preview Environment Configuration run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 5c0e316..dd194e5 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -23,14 +23,6 @@ jobs: - name: Install Vercel Command Line Tools run: npm install --global vercel@latest - - name: Cache Vercel Dependencies - uses: actions/cache@v4 - with: - path: ~/.vercel - key: vercel-cache-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - vercel-cache-${{ runner.os }}- - - name: Fetch Production Environment Configuration run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}