From 37369f00d98096417f08a405e2f2cbaedfa66b06 Mon Sep 17 00:00:00 2001 From: Travis Vasceannie Date: Mon, 26 Jan 2026 04:42:21 +0000 Subject: [PATCH] ci fix --- .gitea/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3c7046f..29a93bb 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -112,6 +112,9 @@ jobs: with: toolchain: ${{ env.RUST_TOOLCHAIN }} + - name: Install protoc + run: sudo apt-get install -y protobuf-compiler + - name: Cache Cargo uses: actions/cache@v4 timeout-minutes: 2 @@ -126,5 +129,8 @@ jobs: key: ${{ runner.os }}-cargo-${{ hashFiles('client/src-tauri/Cargo.lock') }} restore-keys: ${{ runner.os }}-cargo- + - name: Create frontend dist stub (required for Tauri build) + run: mkdir -p ../dist && touch ../dist/index.html + - name: Run Rust tests run: cargo test --lib