From 7f3c511869469ad12c7c91c568cf813cf3b5341e Mon Sep 17 00:00:00 2001 From: Michael Wyatt Date: Mon, 9 Oct 2023 09:38:44 -0700 Subject: [PATCH] fix bad build command --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 093bc98d41e8..fe6122d04890 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,6 +14,8 @@ jobs: - uses: actions/checkout@v3 with: ref: "master" + - id: setup-venv + uses: ./.github/workflows/setup-venv - name: Get release version from tag run: | echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV @@ -22,7 +24,7 @@ jobs: python release/check_release_version.py --release_version ${{ env.RELEASE_VERSION }} - name: Build DeepSpeed run: | - DS_BUILD_STRING=" " python setup.py sdist_wheel + DS_BUILD_STRING=" " python setup.py sdist - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: