Skip to content

Commit

Permalink
ci: revert #122 and #123 (#124)
Browse files Browse the repository at this point in the history
This reverts commit 0182033.

Revert "ci: add an option of skipping build wheels (#122)"

This reverts commit 3e19ec3.

Revert "ci: run release if build wheel success or skipped (#123)"
  • Loading branch information
yzh119 authored Feb 18, 2024
1 parent 0182033 commit 1b75874
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/release_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -29,7 +22,6 @@ env:

jobs:
build:
if : ${{ !github.event.inputs.skip_build_wheel }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 1b75874

Please sign in to comment.