Skip to content

Commit

Permalink
Use actions v3 to let artifacts to have same name
Browse files Browse the repository at this point in the history
  • Loading branch information
martaiborra committed Dec 28, 2023
1 parent 60e496a commit 7afcf17
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
with:
submodules: 'recursive'

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cibuildwheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
submodules: 'recursive'

Expand All @@ -73,7 +73,7 @@ jobs:
# CIBW_CONFIG_SETTINGS: "--build-option=-DDEACTIVATE_AVX512:BOOL=YES"

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

Expand All @@ -91,7 +91,7 @@ jobs:
arch: x86

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
with:
submodules: 'recursive'

Expand All @@ -110,7 +110,7 @@ jobs:
python -m build --sdist
- name: Upload sdist package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

Expand All @@ -136,7 +136,7 @@ jobs:
# Only upload wheels when tagging (typically a release)
if: startsWith(github.event.ref, 'refs/tags')
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down

0 comments on commit 7afcf17

Please sign in to comment.