Skip to content

Commit 1c02faa

Browse files
fix traversing of release artifacts
1 parent 157bfbd commit 1c02faa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/develop.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
for artifact_dir in artifacts/*/; do
172172
if [ -d "$artifact_dir" ]; then
173173
echo "Uploading assets from $artifact_dir"
174-
for file in "$artifact_dir"*; do
174+
for file in "$artifact_dir"/*; do
175175
if [ -f "$file" ]; then
176176
filename=$(basename "$file")
177177
echo "Uploading $filename"

0 commit comments

Comments
 (0)