We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d210f11 commit 3a58893Copy full SHA for 3a58893
.github/workflows/build.yml
@@ -63,6 +63,19 @@ jobs:
63
if: runner.os == 'Linux'
64
run: echo "/snap/bin" >> $GITHUB_PATH
65
66
+ - name: Cache Electron binaries
67
+ id: electron-cache
68
+ uses: actions/cache@v3
69
+ with:
70
+ path: |
71
+ ~/.cache/electron
72
+ ~/.cache/electron-builder
73
+ ~/AppData/Local/electron
74
+ ~/AppData/Local/electron-builder
75
+ key: ${{ runner.os }}-electron-${{ hashFiles('package.json') }}
76
+ restore-keys: |
77
+ ${{ runner.os }}-electron-
78
+
79
- name: Run build script on Linux and MacOS
80
if: runner.os == 'Linux' || runner.os == 'macOS'
81
run: yarn dist
0 commit comments