aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release_builds.yml
diff options
context:
space:
mode:
authorRemy Raes <raes.remy@gmail.com>2022-09-18 01:02:32 +0200
committerRemy Raes <raes.remy@gmail.com>2022-09-18 01:02:32 +0200
commitcd087af0f7641312047551229ac1d58da9024802 (patch)
tree681485ab39394ee6fad6ee4a254bab8669b1b1d7 /.github/workflows/release_builds.yml
parentc468e59fb9e9c71833165358f96cbc1ae1f18a83 (diff)
downloadViper-cd087af0f7641312047551229ac1d58da9024802.tar.gz
Viper-cd087af0f7641312047551229ac1d58da9024802.zip
refactor: remove --force option from `npm install`
Issue has been fixed in #144.
Diffstat (limited to '.github/workflows/release_builds.yml')
-rw-r--r--.github/workflows/release_builds.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release_builds.yml b/.github/workflows/release_builds.yml
index 0880e81..bc3dac6 100644
--- a/.github/workflows/release_builds.yml
+++ b/.github/workflows/release_builds.yml
@@ -14,7 +14,7 @@ jobs:
with:
node-version: 16
- name: Install dependencies
- run: npm install --force
+ run: npm install
- name: Create builds
run: npm run build:windows
- name: Upload production artifacts to release
@@ -37,7 +37,7 @@ jobs:
with:
node-version: 16
- name: Install dependencies
- run: npm install --force
+ run: npm install
- name: Create builds
run: npm run build:linux
- name: Upload production artifacts to release