Refactor GitHub Actions workflow for CLI build: rename job and add clean git state check

This commit is contained in:
Jérôme Commaret 2026-01-18 15:01:09 +01:00
parent 0d2e41da29
commit 330ffd63f5

View file

@ -1,4 +1,4 @@
name: Build CLI (macOS) name: Build CLI
on: on:
push: push:
@ -19,6 +19,9 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Check clean git state
run: .github/workflows/check-clean-git-state.sh
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
@ -51,6 +54,6 @@ jobs:
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: void-cli-macos name: code-cli-macos
path: cli/target/release/void path: cli/target/release/code