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.
2 parents 9154e45 + db241e6 commit 0ab971fCopy full SHA for 0ab971f
1 file changed
.github/workflows/ce-build-whl.yml
@@ -96,7 +96,11 @@ jobs:
96
for cuda in cu126 cu129 cu130; do
97
python bos_tools.py $file paddle-whl/nightly/$cuda/paddleformers/
98
echo "$file: https://paddle-whl.bj.bcebos.com/nightly/$cuda/paddleformers/$file"
99
- python3 notify_paddle_link.py $cuda $file
+ if [[ ! "$file" =~ -0\.0\.0\. ]]; then
100
+ python3 notify_paddle_link.py $cuda $file
101
+ else
102
+ echo "Skip notify for 0.0.0 wheel: $file"
103
+ fi
104
done
105
106
'
0 commit comments