summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2021-03-25 21:23:27 -0400
committermorpheus65535 <[email protected]>2021-03-25 21:23:27 -0400
commit272a1c11416241a94f222d4a15e42768e21a11f1 (patch)
treedd49d530a5c82a95680c4fd9f4d2362ceeee07e9 /.github
parent6abca59c83a1a6ce1c040af02a89d351d23897d2 (diff)
downloadbazarr-272a1c11416241a94f222d4a15e42768e21a11f1.tar.gz
bazarr-272a1c11416241a94f222d4a15e42768e21a11f1.zip
Fixed packages.json creation path
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release_beta_to_dev.yaml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml
index a6ea3add2..3ef91b13e 100644
--- a/.github/workflows/release_beta_to_dev.yaml
+++ b/.github/workflows/release_beta_to_dev.yaml
@@ -25,8 +25,7 @@ jobs:
- run: npm install -D @release-it/bumper
- name: Install dependencies
- run: npm install
- working-directory: ${{ env.working-directory }}
+ run: npm --prefix ${{ env.working-directory }} install
- name: Remove previous build directory
uses: JesseTG/[email protected]
@@ -34,8 +33,7 @@ jobs:
path: ${{ env.working-directory }}/build
- name: Build
- run: npm run build
- working-directory: ${{ env.working-directory }}
+ run: npm --prefix ${{ env.working-directory }} run build
- uses: stefanzweifel/git-auto-commit-action@v4
with: