diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/dev_builds.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release_builds.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/dev_builds.yml b/.github/workflows/dev_builds.yml index e1c2598..1951ee7 100644 --- a/.github/workflows/dev_builds.yml +++ b/.github/workflows/dev_builds.yml @@ -16,7 +16,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: Archive production artifacts @@ -36,7 +36,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: Archive production artifacts 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 |