Skip to content

Commit

Permalink
Changed the name of the native produced artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
sanguinariojoe committed May 24, 2024
1 parent 31fa64c commit 80d01cc
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
- uses: actions/upload-artifact@v4
id: build_wheels
with:
name: python-wheels-x86_64
name: python-wheels-${{runner.os}}
path: ./dist/*

build_aarch64:
Expand Down Expand Up @@ -132,25 +132,37 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Download x86_64 dists
- name: Download Linux x86_64 dists
uses: actions/download-artifact@v4
with:
name: python-wheels-x86_64
name: python-wheels-Linux
path: dist/

- name: Download aarch64 dists
- name: Download MacOS x86_64 dists
uses: actions/download-artifact@v4
with:
name: python-wheels-MacOS
path: dist/

- name: Download Windows x86_64 dists
uses: actions/download-artifact@v4
with:
name: python-wheels-Windows
path: dist/

- name: Download Linux aarch64 dists
uses: actions/download-artifact@v4
with:
name: python-wheels-aarch64
path: dist/

- name: Download ppc64le dists
- name: Download Linux ppc64le dists
uses: actions/download-artifact@v4
with:
name: python-wheels-ppc64le
path: dist/

- name: Download s390x dists
- name: Download Linux s390x dists
uses: actions/download-artifact@v4
with:
name: python-wheels-s390x
Expand Down

0 comments on commit 80d01cc

Please sign in to comment.