Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Jan 5, 2024
1 parent 7be654a commit f0a9de9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-ubuntu-${{ matrix.target }}
name: egobox-ubuntu-${{ matrix.target }}
path: dist

windows:
Expand All @@ -58,8 +58,8 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-windows-${{ matrix.target }}
path: dist
name: egobox-windows-${{ matrix.target }}
path: dist/*.whl

macos:
runs-on: macos-latest
Expand All @@ -80,8 +80,8 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.target }}
path: dist
name: egobox-macos-${{ matrix.target }}
path: dist/*.whl

sdist:
runs-on: ubuntu-latest
Expand All @@ -95,17 +95,17 @@ jobs:
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist
name: egobox-src
path: dist/*.tar.gz

release:
name: Release
runs-on: ubuntu-latest
needs: [sdist, macos, linux, windows]
needs: [sdist, linux, windows, macos]
steps:
- uses: actions/download-artifact@v4
with:
pattern: wheels-*
pattern: egobox-*
merge-multiple: true
path: dist

Expand Down

0 comments on commit f0a9de9

Please sign in to comment.