Skip to content
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Upload Python Package
name: Release

on:
push:
Expand Down Expand Up @@ -43,11 +43,11 @@ jobs:
git branch
git fetch --depth=1 origin +refs/tags/*:refs/tags/*

# TODO: add cbuildwheel cache
- name: Build release distributions
run: uv build --wheel
- name: Build wheels
uses: pypa/[email protected]
env:
HATCH_BUILD_HOOKS_ENABLE: true
CIBW_SKIP: cp313-macosx_*

- uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
run: |
export UV_PUBLISH_PASSWORD="${{ secrets.PYPI_TOKEN }}"
export UV_PUBLISH_USERNAME="__token__"
uv publish --publish-url https://upload.pypi.org/legacy/ --keyring-provider disabled
uv publish --publish-url https://upload.pypi.org/legacy/

- name: Make github release
uses: softprops/action-gh-release@v2
Expand Down
Loading