We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c8139 commit eea57e5Copy full SHA for eea57e5
.github/workflows/wheel.yaml
@@ -34,8 +34,9 @@ jobs:
34
bazelisk build //:wheel
35
bazelisk run //:wheel_rename
36
37
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
38
with:
39
+ name: artifact-${{ matrix.os }}-${{ matrix.python-version }}
40
path: bazel-bin/*.whl
41
42
upload_pypi:
@@ -49,10 +50,11 @@ jobs:
49
50
if: github.event_name == 'release' && github.event.action == 'published'
51
steps:
52
- name: Download wheels
- uses: actions/download-artifact@v3
53
+ uses: actions/download-artifact@v4
54
- name: artifact
55
+ pattern: 'artifact-*'
56
path: dist
57
+ merge-multiple: true
58
59
- name: Publish to PyPI
60
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments