Skip to content

Commit ebf39a1

Browse files
committed
fix wildcard expansion
1 parent 261f8c4 commit ebf39a1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,11 @@ jobs:
120120
run: |
121121
gh run download ${{ inputs.run-id }} -p "${{ inputs.component }}*" -R ${{ github.repository }}
122122
mkdir dist
123-
for p in "${{ inputs.component }}*"; do
123+
for p in ${{ inputs.component }}*
124+
do
124125
mv ${p}/*.whl dist/
125126
done
126-
rmdir "${{ inputs.component }}*"
127+
rmdir ${{ inputs.component }}*
127128
128129
- name: Publish package distributions to PyPI
129130
if: ${{ inputs.wheel-dst == 'pypi' }}

0 commit comments

Comments
 (0)