We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8200dfe commit 8b418e4Copy full SHA for 8b418e4
.github/workflows/release.yml
@@ -13,21 +13,26 @@ jobs:
13
name: 'Build & publish package to PyPI'
14
runs-on: 'ubuntu-latest'
15
steps:
16
- - uses: actions/checkout@v6
+
17
+ - name: Acquire source code
18
+ uses: actions/checkout@v6
19
with:
20
fetch-depth: 0
21
fetch-tags: true
22
persist-credentials: false
23
- - name: Set up uv
24
+ - name: Install uv
25
uses: astral-sh/setup-uv@v7
26
27
activate-environment: true
28
enable-cache: true
29
python-version: "3.14"
30
- - name: Set up Hatch and Twine
- run: uv pip install hatch twine
31
+ - name: Install Hatch
32
+ uses: pypa/hatch@install
33
34
+ - name: Install Twine
35
+ run: uv pip install twine
36
37
- name: Build package
38
run: hatch build
0 commit comments