commit
77149ff7db
|
@ -44,8 +44,20 @@ jobs:
|
|||
uses: actions/setup-node@v1
|
||||
with:
|
||||
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
|
||||
env:
|
||||
# macOS notarization API key
|
||||
|
|
Loading…
Reference in New Issue