Skip to content

Commit db241e6

Browse files
authored
fix upload whl (#4699)
1 parent e9a04b8 commit db241e6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ce-build-whl.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,11 @@ jobs:
104104
for cuda in cu126 cu129 cu130; do
105105
python bos_tools.py $file paddle-whl/nightly/$cuda/paddleformers/
106106
echo "$file: https://paddle-whl.bj.bcebos.com/nightly/$cuda/paddleformers/$file"
107-
python3 notify_paddle_link.py $cuda $file
107+
if [[ ! "$file" =~ -0\.0\.0\. ]]; then
108+
python3 notify_paddle_link.py $cuda $file
109+
else
110+
echo "Skip notify for 0.0.0 wheel: $file"
111+
fi
108112
done
109113
done
110114
'

0 commit comments

Comments
 (0)