Skip to content
This repository has been archived by the owner on Oct 13, 2022. It is now read-only.

Commit

Permalink
[fix] workflows - fix yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
minskiter committed May 23, 2022
1 parent c63c538 commit 4bc2547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
cache: "yarn"

- name: install dependencies
run: yarn add --frozen-lockfile
run: yarn install --frozen-lockfile

- name: build win x64
run: yarn electron:build
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
cache: "yarn"

- name: install dependencies
run: yarn
run: yarn install --frozen-lockfile

- name: build macos x64
run: yarn electron:build
Expand Down

0 comments on commit 4bc2547

Please sign in to comment.