From b5da350394b183707c307e452c7b2f3c94b939a2 Mon Sep 17 00:00:00 2001 From: tqcq <99722391+tqcq@users.noreply.github.com> Date: Mon, 14 Jul 2025 10:56:42 +0800 Subject: [PATCH] fix workflow step format --- .gitea/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 67cf1b8..1de55d6 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -5,8 +5,8 @@ jobs: build-server: runs-on: ubuntu-latest steps: - - cargo build -p server + - run: cargo build -p server build-client: runs-on: ubuntu-latest steps: - - cargo build -p client + - run: cargo build -p client