From 1b758740a525876bd931ecc66fc56b2919f67aa3 Mon Sep 17 00:00:00 2001 From: Zihao Ye Date: Sat, 17 Feb 2024 16:13:05 -0800 Subject: [PATCH] ci: revert #122 and #123 (#124) This reverts commit 01820330ce0db5f4fdfbad0908b87ff73c646e19. Revert "ci: add an option of skipping build wheels (#122)" This reverts commit 3e19ec3574cb921abfb764ec77a26daf08bd3ca3. Revert "ci: run release if build wheel success or skipped (#123)" --- .github/workflows/release_wheel.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/release_wheel.yml b/.github/workflows/release_wheel.yml index 89061238..d5b9118e 100644 --- a/.github/workflows/release_wheel.yml +++ b/.github/workflows/release_wheel.yml @@ -6,18 +6,11 @@ on: tag_name: required: true type: string - skip_build_wheel: - required: true - type: boolean workflow_call: inputs: tag_name: required: true type: string - skip_build_wheel: - required: false - default: false - type: boolean secrets: WHL_TOKEN: required: true @@ -29,7 +22,6 @@ env: jobs: build: - if : ${{ !github.event.inputs.skip_build_wheel }} strategy: fail-fast: false matrix: @@ -66,7 +58,7 @@ jobs: path: python/dist/* release: - if: ${{ success() || github.event.inputs.skip_build_wheel }} + needs: build runs-on: ubuntu-latest steps: - uses: actions/download-artifact@v4