Skip to content
This repository was archived by the owner on Apr 5, 2026. It is now read-only.

Commit 6210da8

Browse files
author
phernandez
committed
chore: fix github release workflow
1 parent f32e6fe commit 6210da8

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,14 @@ jobs:
4040

4141
- name: Install dependencies
4242
run: |
43+
uv venv
44+
source .venv/bin/activate
4345
uv pip install ".[dev]"
4446
4547
- name: Release
4648
env:
4749
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4850
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
49-
run: semantic-release publish
51+
run: |
52+
source .venv/bin/activate
53+
semantic-release publish

0 commit comments

Comments
 (0)