Skip to content

Commit

Permalink
Merge pull request #260 from CGAL/dependabot/github_actions/actions/d…
Browse files Browse the repository at this point in the history
…ownload-artifact-4

Bump actions/download-artifact from 3 to 4
  • Loading branch information
lrineau committed Dec 20, 2023
2 parents 27080d9 + f76691d commit d0ed7a5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz

build-and-test-wheels:
Expand Down Expand Up @@ -199,17 +200,18 @@ jobs:
- uses: actions/upload-artifact@v4
if: endsWith(matrix.cgal_branch, env.LATEST_CGAL_VERSION)
with:
name: wheel-${{ matrix.os }}-${{ matrix.cgal_branch }}-${{ matrix.python-version }}
path: cgal-*.whl

upload:
name: Upload to PyPI
runs-on: ubuntu-latest
needs: [sdist, build-and-test-wheels]
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
merge-multiple: true

- name: upload to TestPyPI
if: github.event_name == 'push' && github.ref_name == 'main'
Expand Down

0 comments on commit d0ed7a5

Please sign in to comment.