commit
77149ff7db
|
@ -44,8 +44,20 @@ jobs:
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: 10.16
|
node-version: 10.16
|
||||||
- run: yarn install --network-concurrency 1
|
- run: |
|
||||||
|
mkdir .yarncache
|
||||||
|
yarn install --frozen-lockfile --cache-folder ./.yarncache
|
||||||
|
- name: Remove and cache clean (Windows Only)
|
||||||
|
if: startsWith(matrix.os, 'windows')
|
||||||
|
shell: powershell
|
||||||
|
run: |
|
||||||
|
rm -Recurse -Force .yarncache
|
||||||
|
yarn cache clean
|
||||||
|
- name: Remove and cache clean
|
||||||
|
if: "!startsWith(matrix.os, 'windows')"
|
||||||
|
run: |
|
||||||
|
rm -rf .yarncache
|
||||||
|
yarn cache clean
|
||||||
- name: Build/Release Desktop App
|
- name: Build/Release Desktop App
|
||||||
env:
|
env:
|
||||||
# macOS notarization API key
|
# macOS notarization API key
|
||||||
|
|
Loading…
Reference in New Issue