We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc89543 commit 7d44f86Copy full SHA for 7d44f86
.github/workflows/release-download-pytorch-org.yml
@@ -85,5 +85,11 @@ jobs:
85
# Run promotion
86
# shellcheck disable=SC2086
87
version="${PACKAGE^^}_VERSION"
88
+
89
+ # do not upload FA3 test wheels with local date suffix
90
+ if [[ "${PACKAGE}" == "flash_attn_3" ]]; then
91
+ export PACKAGE_INCLUDE_SUFFIX="-*"
92
+ fi
93
94
95
promote_s3 ${PACKAGE} whl "${!version}"
release/promote/common_utils.sh
@@ -52,7 +52,7 @@ aws_promote() {
52
--recursive \
53
--metadata-directive COPY \
54
--exclude '*' \
55
- --include "*${package_name}-${pytorch_version}*" \
+ --include "*${package_name}-${pytorch_version}${PACKAGE_INCLUDE_SUFFIX:-*}" \
56
"${PYTORCH_S3_FROM/\/$//}" \
57
"${PYTORCH_S3_TO/\/$//}"
58
)
0 commit comments