mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-24 10:00:59 -05:00
chore(ci): Update for artifact handling
This commit is contained in:
parent
654cdfafdb
commit
53eb27d813
1 changed files with 6 additions and 6 deletions
12
.github/workflows/maturin.yml
vendored
12
.github/workflows/maturin.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
- name: Upload wheels
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: wheels
|
||||
name: wheels-linux-${{ matrix.target }}
|
||||
path: dist
|
||||
|
||||
musllinux:
|
||||
|
@ -61,7 +61,7 @@ jobs:
|
|||
- name: Upload wheels
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: wheels
|
||||
name: wheels-musllinux-${{ matrix.target }}
|
||||
path: dist
|
||||
|
||||
windows:
|
||||
|
@ -84,7 +84,7 @@ jobs:
|
|||
- name: Upload wheels
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: wheels
|
||||
name: wheels-windows-${{ matrix.target }}
|
||||
path: dist
|
||||
|
||||
macos:
|
||||
|
@ -107,7 +107,7 @@ jobs:
|
|||
- name: Upload wheels
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: wheels
|
||||
name: wheels-macos-${{ matrix.target }}
|
||||
path: dist
|
||||
|
||||
sdist:
|
||||
|
@ -122,7 +122,7 @@ jobs:
|
|||
- name: Upload sdist
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: wheels
|
||||
name: wheels-sdist
|
||||
path: dist
|
||||
|
||||
release:
|
||||
|
@ -133,7 +133,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: wheels
|
||||
merge-multiple: true
|
||||
- name: Publish to PyPI
|
||||
uses: PyO3/maturin-action@v1
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue