From 43abcaf7c114f0b791a47cd20abf0e59577c3021 Mon Sep 17 00:00:00 2001 From: aarkue Date: Sat, 16 Mar 2024 23:39:46 +0100 Subject: [PATCH] Fix: also install ../fronend dependencies --- .github/workflows/tauri-build-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tauri-build-app.yml b/.github/workflows/tauri-build-app.yml index 9e6d04c..eea3041 100644 --- a/.github/workflows/tauri-build-app.yml +++ b/.github/workflows/tauri-build-app.yml @@ -46,7 +46,7 @@ jobs: - name: Install frontend dependencies # If you don't have `beforeBuildCommand` configured you may want to build your frontend here too. - run: npm install # Change this to npm, yarn or pnpm. + run: npm install && cd ../frontend && npm install # Change this to npm, yarn or pnpm. - name: Build the app uses: tauri-apps/tauri-action@v0