Skip to content

Commit

Permalink
chore(ci): yarn install --frozen-lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
defclass committed Feb 2, 2021
1 parent 6cda854 commit d3cf5fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-desktop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
sudo ./linux-install-1.10.1.763.sh
- name: Compile CLJS
run: yarn install && gulp build && yarn cljs:release
run: yarn install --frozen-lockfile && gulp build && yarn cljs:release

- name: Update APP Version
run: |
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/package.json') }}

- name: Build/Release Electron App
run: yarn && yarn electron:make
run: yarn install --frozen-lockfile && yarn electron:make
working-directory: ./static

- name: Change Artifact Name
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
node-version: 14

- name: Build/Release Electron app
run: yarn && yarn electron:make
run: yarn install --frozen-lockfile && yarn electron:make
working-directory: ./static

- name: Change Artifact Name
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/package.json') }}

- name: Build/Release Electron App
run: yarn && yarn electron:make
run: yarn install --frozen-lockfile && yarn electron:make
working-directory: ./static

- name: Change Artifact Name
Expand Down

0 comments on commit d3cf5fc

Please sign in to comment.