Skip to content

Commit

Permalink
split download in three options
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-melf committed Dec 20, 2023
1 parent b154ef2 commit 59fc641
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,21 @@ jobs:
needs: cutensornet-checks
runs-on: ubuntu-22.04
steps:
- name: Download all wheels
- name: Download macos-12 wheels
uses: actions/download-artifact@v4
with:
path: wheelhouse
name: artefact-macos-12
- name: Download windows-2022 wheels
uses: actions/download-artifact@v4
with:
path: wheelhouse
name: artefact-windows-2022
- name: Download ubuntu-22.04 wheels
uses: actions/download-artifact@v4
with:
path: wheelhouse
name: artefact-ubuntu-22.04
- name: Put them all in the dist folder
run: |
mkdir dist
Expand Down

0 comments on commit 59fc641

Please sign in to comment.