Skip to content

Commit

Permalink
just a try
Browse files Browse the repository at this point in the history
  • Loading branch information
qdelamea-aneo committed Nov 20, 2024
1 parent 24afbc3 commit 12a2eca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ jobs:

- name: Install dependencies
run: |
python -m pip install uv
python -m uv pip install build
python -m venv .venv
.venv/bin/python -m pip install uv
.venv/bin/python -m uv pip install build
- name: Build the CLI
run: python -m build --sdist --wheel
run: .venv/bin/python -m build --sdist --wheel

- name: Upload build artifacts
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ def get_local_schema(version: ScmVersion) -> str:
return ""


setup(use_scm_version={"local_scheme": get_local_schema})
setup(name="armonik_cli", use_scm_version={"local_scheme": get_local_schema})

0 comments on commit 12a2eca

Please sign in to comment.