Skip to content

Commit

Permalink
github action: fix downloading of artifacts
Browse files Browse the repository at this point in the history
seem like we are hit by a bug when trying to download
create by `docker/build-push-action` that we don't even need

filtering to the exact ones we do need, to avoid this issue

Ref: actions/download-artifact#367
  • Loading branch information
fruch committed Jan 20, 2025
1 parent 664ec96 commit 2d388cd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
name: artifacts-wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl

build_sdist:
Expand All @@ -46,7 +46,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: source-dist
name: artifacts-source-dist
path: dist/*.tar.gz

integration_test_scylla:
Expand Down Expand Up @@ -203,6 +203,7 @@ jobs:
- uses: actions/download-artifact@v4.1.8
with:
path: dist
pattern: artifacts-*
merge-multiple: true

- uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit 2d388cd

Please sign in to comment.