We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f659296 commit 0291a9dCopy full SHA for 0291a9d
1 file changed
.github/workflows/upload-test.yml
@@ -89,18 +89,19 @@ jobs:
89
uses: actions/download-artifact@v4
90
with:
91
name: wheels-aarch64
92
+ path: dist
93
94
- name: Download sdist artifact
95
96
97
name: sdist
98
99
- # Combine all artifacts into the dist directory
- - name: Create dist directory and move artifacts
100
- run: |
101
- mkdir -p dist
102
- mv wheels-aarch64/* dist/
103
- mv sdist/* dist/
+ - name: Check working directory
+ run: pwd
+
+ - name: List all files and directories
104
+ run: ls -R
105
106
# List the contents of the dist directory for debugging
107
- name: List final dist directory contents
0 commit comments