Skip to content

Commit a779d60

Browse files
committed
continue is not break
1 parent cdd0d37 commit a779d60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/app-test-build-deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ jobs:
327327
for variant in release internal-release ; do
328328
mkdir to_upload_${variant}
329329
variant_pattern="./artifacts/opentrons-${variant}-*"
330-
ls ${variant_pattern}/ 2>/dev/null 1>/dev/null || break
330+
ls ${variant_pattern}/ 2>/dev/null 1>/dev/null || continue
331331
echo "Moving ${variant} builds ${variant_pattern}/* to to_upload_${variant}"
332332
cp ./artifacts/${variant_pattern}/* ./to_upload_${variant}/
333333
echo "Moved $(ls ./to_upload_${variant})"

0 commit comments

Comments
 (0)