We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca9671 commit 028a537Copy full SHA for 028a537
.github/workflows/build-release.yml
@@ -113,6 +113,17 @@ jobs:
113
114
# --- Electron Build ---
115
116
+ - name: Cache Electron
117
+ uses: actions/cache@v4
118
+ with:
119
+ path: |
120
+ ~/.cache/electron
121
+ ~/Library/Caches/electron
122
+ %LOCALAPPDATA%\electron\Cache
123
+ key: ${{ runner.os }}-electron-${{ hashFiles('package-lock.json') }}
124
+ restore-keys: |
125
+ ${{ runner.os }}-electron-
126
+
127
- name: Install Dependencies
128
run: bun install
129
0 commit comments