Skip to content

Commit

Permalink
upd pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
generall committed Oct 27, 2024
1 parent c4c8d07 commit cf6b4ed
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.target }}-${{ matrix.python-version }}-windows
name: wheels-${{ matrix.python-version }}-windows
path: dist

linux:
Expand Down Expand Up @@ -286,8 +286,7 @@ jobs:
name: wheels-${{ matrix.os }}-${{ matrix.target }}-${{ matrix.python-version }}-pypy
path: dist

release:
name: Release
merge-artifacts:
runs-on: ubuntu-latest
needs:
- macos
Expand All @@ -297,6 +296,18 @@ jobs:
- musllinux
- musllinux-cross
- pypy
steps:
- uses: actions/upload-artifact/merge@v4
with:
name: wheels
pattern: wheels-*
delete-merged: true

release:
name: Release
runs-on: ubuntu-latest
needs:
- merge-artifacts
# Only run if triggered by a tag push
if: startsWith(github.ref, 'refs/tags/v')
steps:
Expand Down

0 comments on commit cf6b4ed

Please sign in to comment.