Skip to content

Commit 498e66d

Browse files
authored
Add executorch to staging release for pypi workflows (#7360)
Add executorch to staging wheels for pypi workflow
1 parent 81bd89a commit 498e66d

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/release-stage-pypi.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ on:
1919
- torchao
2020
- torchvision
2121
- torchaudio
22+
- executorch
2223

2324
permissions:
2425
id-token: write
@@ -93,3 +94,10 @@ jobs:
9394
# shellcheck disable=SC2086
9495
PLATFORM="manylinux_2_28_x86_64" VERSION_SUFFIX="${LINUX_VERSION_SUFFIX}" ARCH="${CUDA_ARCH}" upload_pypi_to_staging ${PACKAGE} "${!version}"
9596
fi
97+
98+
if [[ ${PACKAGE} == 'executorch' ]]; then
99+
# shellcheck disable=SC2086
100+
PLATFORM="manylinux_2_28_x86_64" VERSION_SUFFIX="${CPU_VERSION_SUFFIX}" upload_pypi_to_staging executorch "${!version}"
101+
# shellcheck disable=SC2086
102+
PLATFORM="${MACOS_ARM64}" VERSION_SUFFIX="" upload_pypi_to_staging executorch "${!version}"
103+
fi

release/release_versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.9.0}
77
TRITON_VERSION=${TRITON_VERSION:-3.3.0}
88
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.18.0}
99
TORCHREC_VERSION=${TORCHREC_VERSION:-1.3.0}
10+
EXECUTORCH_VERSION=${EXECUTORCH_VERSION:-1.0.0}
1011
TORCH_TENSORRT_VERSION=${TORCH_TENSORRT_VERSION:-2.9.0}
11-
EXECUTORCH_VERSION=${EXECUTORCH_VERSION:-0.3.0}
1212
TORCHAO_VERSION=${TORCHAO_VERSION:-0.14.0}
1313
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.11.0}
1414
TORCHTUNE_VERSION=${TORCHTUNE_VERSION:-0.2.1}

0 commit comments

Comments
 (0)