Skip to content

Commit c1ee928

Browse files
committed
CI: Deploy: Do not update dependencies
- use `uv sync --locked` in order to not update dependencies and bump the version when deploying - downgrad python version by a minor version for deployment
1 parent c4fbdaf commit c1ee928

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/deploy.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,15 @@ jobs:
4242
- uses: actions/checkout@v4
4343
with:
4444
fetch-depth: 0
45+
fetch-tags: true
4546
- name: Install uv
4647
uses: astral-sh/setup-uv@v5
4748
with:
4849
version: 0.6.13
4950
- name: Install Python
50-
run: uv python install 3.13.2
51+
run: uv python install
5152
- name: Install Zennit and its Dependencies
52-
run: uv sync
53+
run: uv sync --locked
5354
- name: Build the Zennit Project
5455
run: uv build
5556
- name: Publish the Zennit Project to PyPI

.python-versions

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
3.11.12
2-
3.12.10
3-
3.13.3
1+
3.11.11
2+
3.12.9
3+
3.13.2

0 commit comments

Comments
 (0)