From 4a22d5719e344e8589233b11091ae345d780d9d2 Mon Sep 17 00:00:00 2001 From: kytwb Date: Fri, 31 Dec 2021 16:43:51 +0100 Subject: Remove caches usage on windows builds --- .github/workflows/builds.yml | 18 ------------------ 1 file changed, 18 deletions(-) (limited to '.github') diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 6a3099d98..c1f776821 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -284,10 +284,6 @@ jobs: - name: Set env vars run: | echo "HOME=$USERPROFILE" >> $GITHUB_ENV - echo "NPM_CACHE=$USERPROFILE\.npm" >> $GITHUB_ENV - echo "PNPM_CACHE=$USERPROFILE\.pnpm-store" >> $GITHUB_ENV - echo "ELECTRON_CACHE=$USERPROFILE\.cache\electron" >> $GITHUB_ENV - echo "ELECTRON_BUILDER_CACHE=$USERPROFILE\.cache\electron-builder" >> $GITHUB_ENV echo "MANUAL_REBUILD_ON_NIGHTLY=${{ github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]') }}" >> $GITHUB_ENV echo "SKIP_NOTARIZATION=${{ !contains(github.repository_owner, 'getferdi') }}" >> $GITHUB_ENV shell: bash @@ -305,20 +301,6 @@ jobs: - name: Extract Git branch name from the currently checked out branch (not from the branch where this run was kicked off) run: echo "GIT_BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV shell: bash - - name: Cache electron modules - uses: actions/cache@v2 - env: - cache-name: cache-electron-modules - with: - key: ${{ runner.os }}-${{ env.cache-name }} - path: ${{ env.ELECTRON_CACHE }} - - name: Cache electron-builder modules - uses: actions/cache@v2 - env: - cache-name: cache-electron-builder-modules - with: - key: ${{ runner.os }}-${{ env.cache-name }} - path: ${{ env.ELECTRON_BUILDER_CACHE }} - name: Use Node.js 16.13.0 uses: actions/setup-node@v2 with: -- cgit v1.2.3-54-g00ecf