aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-31 16:43:51 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-31 16:43:51 +0100
commit4a22d5719e344e8589233b11091ae345d780d9d2 (patch)
tree5ffd399a2b3e18eb9f8f58dde7efd961c189f3d3 /.github
parentUpdate submodules, browserslist data updates and linter fixes [skip ci] (diff)
downloadferdium-app-4a22d5719e344e8589233b11091ae345d780d9d2.tar.gz
ferdium-app-4a22d5719e344e8589233b11091ae345d780d9d2.tar.zst
ferdium-app-4a22d5719e344e8589233b11091ae345d780d9d2.zip
Remove caches usage on windows builds
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml18
1 files changed, 0 insertions, 18 deletions
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:
284 - name: Set env vars 284 - name: Set env vars
285 run: | 285 run: |
286 echo "HOME=$USERPROFILE" >> $GITHUB_ENV 286 echo "HOME=$USERPROFILE" >> $GITHUB_ENV
287 echo "NPM_CACHE=$USERPROFILE\.npm" >> $GITHUB_ENV
288 echo "PNPM_CACHE=$USERPROFILE\.pnpm-store" >> $GITHUB_ENV
289 echo "ELECTRON_CACHE=$USERPROFILE\.cache\electron" >> $GITHUB_ENV
290 echo "ELECTRON_BUILDER_CACHE=$USERPROFILE\.cache\electron-builder" >> $GITHUB_ENV
291 echo "MANUAL_REBUILD_ON_NIGHTLY=${{ github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]') }}" >> $GITHUB_ENV 287 echo "MANUAL_REBUILD_ON_NIGHTLY=${{ github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]') }}" >> $GITHUB_ENV
292 echo "SKIP_NOTARIZATION=${{ !contains(github.repository_owner, 'getferdi') }}" >> $GITHUB_ENV 288 echo "SKIP_NOTARIZATION=${{ !contains(github.repository_owner, 'getferdi') }}" >> $GITHUB_ENV
293 shell: bash 289 shell: bash
@@ -305,20 +301,6 @@ jobs:
305 - name: Extract Git branch name from the currently checked out branch (not from the branch where this run was kicked off) 301 - name: Extract Git branch name from the currently checked out branch (not from the branch where this run was kicked off)
306 run: echo "GIT_BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV 302 run: echo "GIT_BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
307 shell: bash 303 shell: bash
308 - name: Cache electron modules
309 uses: actions/cache@v2
310 env:
311 cache-name: cache-electron-modules
312 with:
313 key: ${{ runner.os }}-${{ env.cache-name }}
314 path: ${{ env.ELECTRON_CACHE }}
315 - name: Cache electron-builder modules
316 uses: actions/cache@v2
317 env:
318 cache-name: cache-electron-builder-modules
319 with:
320 key: ${{ runner.os }}-${{ env.cache-name }}
321 path: ${{ env.ELECTRON_BUILDER_CACHE }}
322 - name: Use Node.js 16.13.0 304 - name: Use Node.js 16.13.0
323 uses: actions/setup-node@v2 305 uses: actions/setup-node@v2
324 with: 306 with: