Skip to content

Commit

Permalink
Make proper changes for action/upload-artifact@v4 in windows_wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed May 1, 2024
1 parent 53bed70 commit 8df7525
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/windows_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Upload wheels as artifact
uses: actions/upload-artifact@v4
with:
name: windows_wheels
name: windows_wheels-${{ matrix.python }}-${{ matrix.arch }}
path: dist

windows_wheel_upload:
Expand All @@ -65,7 +65,8 @@ jobs:
python-version: 3.x
- uses: actions/download-artifact@v4
with:
name: windows_wheels
pattern: windows_wheels-*-*
merge-multiple: true
path: dist
- name: Fix wheel names
if: github.event.ref_type != 'tag'
Expand Down Expand Up @@ -113,7 +114,8 @@ jobs:
architecture: ${{ matrix.arch }}
- uses: actions/download-artifact@v4
with:
name: windows_wheels
pattern: windows_wheels-*-*
merge-multiple: true
path: dist
- name: Install Kivy Wheel
run: |
Expand Down Expand Up @@ -145,7 +147,8 @@ jobs:
python-version: 3.x
- uses: actions/download-artifact@v4
with:
name: windows_wheels
pattern: windows_wheels-*-*
merge-multiple: true
path: dist
- name: Install Kivy sdist
env:
Expand Down

0 comments on commit 8df7525

Please sign in to comment.