From 5b24a3d756074781df9ede54f844ee3c241efcff Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 21:34:11 +0000 Subject: [PATCH] fix: correct working-directory in CI workflow --- .gitea/workflows/repohealth.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/repohealth.yml b/.gitea/workflows/repohealth.yml index d666198..14d597a 100644 --- a/.gitea/workflows/repohealth.yml +++ b/.gitea/workflows/repohealth.yml @@ -79,5 +79,6 @@ jobs: python -m pip install build - name: Build package - run: python -m build - working-directory: ./repohealth-cli + run: | + cd repohealth-cli + python -m build \ No newline at end of file