Skip to content

Commit

Permalink
fix duplicate upload-artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-gorules committed Feb 7, 2025
1 parent b365baa commit a996fad
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-${{ matrix.target }}
path: dist

windows:
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-windows-${{ matrix.target }}
path: dist

macos:
Expand All @@ -103,7 +103,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-macos-${{ matrix.target }}
path: dist

sdist:
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-sdist
path: dist

release:
Expand All @@ -131,10 +131,7 @@ jobs:
defaults:
run:
working-directory: ${{ env.WORKING_DIRECTORY }}
# if: "startsWith(github.ref, 'refs/tags/')"
needs: [ linux, windows, macos, sdist ]
# needs: [linux, sdist]
# needs: [linux]
steps:
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit a996fad

Please sign in to comment.