From c2d8fc5a6d4f3998363ce2525777c93c8dbc60b4 Mon Sep 17 00:00:00 2001 From: Duddino Date: Sun, 6 Oct 2024 10:25:06 +0200 Subject: [PATCH] Fix gh workflow --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index df34584..b8f87ea 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -69,7 +69,7 @@ jobs: components: rustfmt rustflags: "" - name: Install tauri deps - run: sudo apt install $TAURI_DEPS + run: sudo apt update && sudo apt install $TAURI_DEPS - name: Run tests run: cd ./src-tauri && cargo test @@ -100,7 +100,7 @@ jobs: run: npm ci && cd ./MPW && npm ci - name: Install tauri deps - run: sudo apt install $TAURI_DEPS + run: sudo apt update && sudo apt install $TAURI_DEPS - name: Build MPW run: cd ./MPW && npm run build