ci: fix — use npm install instead of npm ci (no lockfile)
This commit is contained in:
parent
750617a04a
commit
89fc8a7146
1 changed files with 2 additions and 4 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -20,10 +20,9 @@ jobs:
|
|||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
run: npm install
|
||||
|
||||
- name: Build Windows installer
|
||||
run: npm run build:win
|
||||
|
|
@ -50,10 +49,9 @@ jobs:
|
|||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
run: npm install
|
||||
|
||||
- name: Build macOS DMG
|
||||
run: npm run build:mac
|
||||
|
|
|
|||
Loading…
Reference in a new issue