Skip to content

Commit

Permalink
Downgrade to artifact@v3
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislainv committed Dec 18, 2023
1 parent 738931c commit 1dce1cd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/wheel-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
env:
CIBW_SKIP: pp* cp27-win* cp312-*
CIBW_BEFORE_BUILD: pip install numpy
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

Expand All @@ -55,7 +55,7 @@ jobs:
python3 -m pip install numpy
- name: Build sdist
run: python setup.py sdist
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

Expand All @@ -66,7 +66,7 @@ jobs:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/wheel-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
push:
branches:
- 'dev'

env:
CONFIGURATIONS_FOLDER: .github/label-configuration-files
CONFIGURATIONS_ARTIFACT: label-configuration-files

jobs:
build_wheels:
Expand All @@ -33,7 +37,7 @@ jobs:
env:
CIBW_SKIP: pp* cp27-win* cp312-*
CIBW_BEFORE_BUILD: pip install numpy
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

Expand All @@ -52,7 +56,7 @@ jobs:
python3 -m pip install numpy
- name: Build sdist
run: python setup.py sdist
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

Expand All @@ -66,7 +70,7 @@ jobs:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down

0 comments on commit 1dce1cd

Please sign in to comment.