We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24ecd4c commit 912f3f3Copy full SHA for 912f3f3
.github/workflows/release.yml
@@ -42,12 +42,16 @@ jobs:
42
run: |
43
TAG_NAME=${GITHUB_REF#refs/tags/}
44
echo "Verifying tag $TAG_NAME..."
45
+ git fetch origin tag $TAG_NAME
46
git tag -v "$TAG_NAME"
- - name: Install pypa/build
47
- run:
48
- python3 -m pip install build --user
49
- - name: Build a binary wheel and a source tarball
50
- run: python3 -m build
+ - name: Install uv
+ uses: astral-sh/setup-uv@v5
+ with:
+ enable-cache: true
51
+ - name: Setup Just
52
+ uses: extractions/setup-just@v2
53
+ - name: Build the binary wheel and a source tarball
54
+ run: just build
55
- name: Store the distribution packages
56
uses: actions/upload-artifact@v4
57
with:
0 commit comments