From 330ffd63f577ec413f8cdbfbf5ec4029f056894e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Commaret?= Date: Sun, 18 Jan 2026 15:01:09 +0100 Subject: [PATCH] Refactor GitHub Actions workflow for CLI build: rename job and add clean git state check --- .github/workflows/build-cli-matrix.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-cli-matrix.yml b/.github/workflows/build-cli-matrix.yml index 0cf2c7cd..0c89c04d 100644 --- a/.github/workflows/build-cli-matrix.yml +++ b/.github/workflows/build-cli-matrix.yml @@ -1,4 +1,4 @@ -name: Build CLI (macOS) +name: Build CLI on: push: @@ -19,6 +19,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Check clean git state + run: .github/workflows/check-clean-git-state.sh + - name: Set up Python uses: actions/setup-python@v5 with: @@ -51,6 +54,6 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: void-cli-macos - path: cli/target/release/void + name: code-cli-macos + path: cli/target/release/code