We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9a04b8 commit db241e6Copy full SHA for db241e6
1 file changed
.github/workflows/ce-build-whl.yml
@@ -104,7 +104,11 @@ jobs:
104
for cuda in cu126 cu129 cu130; do
105
python bos_tools.py $file paddle-whl/nightly/$cuda/paddleformers/
106
echo "$file: https://paddle-whl.bj.bcebos.com/nightly/$cuda/paddleformers/$file"
107
- python3 notify_paddle_link.py $cuda $file
+ 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
112
done
113
114
'
0 commit comments