Skip to content

Commit 59f35c2

Browse files
committed
chore: another test update
1 parent 654a089 commit 59f35c2

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/upload-test.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,25 @@ jobs:
8282
id-token: write
8383
steps:
8484
# retrieve your distributions here
85-
- name: Download wheels artifact
85+
- name: Checkout repository
86+
uses: actions/checkout@v4
87+
88+
- name: Download x86_64 wheels artifact
8689
uses: actions/download-artifact@v4
90+
with:
91+
name: wheels-x86_64
92+
93+
- name: Download aarch64 wheels artifact
94+
uses: actions/download-artifact@v4
95+
with:
96+
name: wheels-aarch64
97+
98+
- name: Download sdist artifact
99+
uses: actions/download-artifact@v4
100+
with:
101+
name: sdist
87102

88103
- name: Publish package distributions to PyPI
89104
uses: pypa/gh-action-pypi-publish@release/v1
105+
with:
106+
repository-url: https://test.pypi.org/legacy/

0 commit comments

Comments
 (0)