mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
Refactor GitHub Actions workflow for CLI build: rename job and add clean git state check
This commit is contained in:
parent
0d2e41da29
commit
330ffd63f5
1 changed files with 6 additions and 3 deletions
9
.github/workflows/build-cli-matrix.yml
vendored
9
.github/workflows/build-cli-matrix.yml
vendored
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue