Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/download-artifact from 3 to 4 #452

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 6 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: version
path: .
Expand All @@ -213,7 +213,7 @@ jobs:
- name: Keep wheel files
uses: actions/upload-artifact@v4
with:
name: wheelhouse
name: wheelhouse-${{ matrix.platform }}
path: ./wheelhouse/*.whl

build-and-test-conda:
Expand Down Expand Up @@ -266,19 +266,13 @@ jobs:
python-version: '3.10'
architecture: x64

- uses: actions/download-artifact@v3
with:
name: wheelhouse
path: wheelhouse
- uses: actions/download-artifact@v4

- uses: actions/download-artifact@v3
with:
name: version
path: .
- name: Combine wheelhouses
run: mv wheelhouse-*/* wheelhouse

- name: List assets
run: |
ls ./wheelhouse/ -al
run: ls ./wheelhouse/ -al

- name: Get tag
id: tag
Expand Down