Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
run: uv python install 3.12

- name: Install dependencies
run: uv pip install --system python-semantic-release
run: |
uv venv
uv pip install python-semantic-release

- name: Configure git
run: |
Expand All @@ -39,6 +41,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
run: |
source .venv/bin/activate
OUTPUT=$(semantic-release version 2>&1) || true
echo "$OUTPUT"
if echo "$OUTPUT" | grep -q "No release will be made"; then
Expand Down