mirror of
https://github.com/litruv/AudioSort.git
synced 2026-07-24 02:36:01 +10:00
fix: update dependency installation method in build workflow
This commit is contained in:
6
.github/workflows/build-all.yml
vendored
6
.github/workflows/build-all.yml
vendored
@@ -20,10 +20,9 @@ jobs:
|
|||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '20'
|
node-version: '20'
|
||||||
cache: 'npm'
|
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm install
|
||||||
|
|
||||||
- name: Build Windows
|
- name: Build Windows
|
||||||
run: npm run dist:win
|
run: npm run dist:win
|
||||||
@@ -44,10 +43,9 @@ jobs:
|
|||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '20'
|
node-version: '20'
|
||||||
cache: 'npm'
|
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm install
|
||||||
|
|
||||||
- name: Build Linux
|
- name: Build Linux
|
||||||
run: npm run dist:linux
|
run: npm run dist:linux
|
||||||
|
|||||||
3
.github/workflows/build-linux.yml
vendored
3
.github/workflows/build-linux.yml
vendored
@@ -21,10 +21,9 @@ jobs:
|
|||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '20'
|
node-version: '20'
|
||||||
cache: 'npm'
|
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm install
|
||||||
|
|
||||||
- name: Build Linux packages
|
- name: Build Linux packages
|
||||||
run: npm run dist:linux
|
run: npm run dist:linux
|
||||||
|
|||||||
Reference in New Issue
Block a user