Skip to content

Commit

Permalink
ci: DO NOT MERGE: enable python wheels on pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadow53 committed Nov 23, 2023
1 parent a73122a commit ecdf1ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ on:

jobs:
is-python-release:
if: true && github.event_name == 'workflow_dispatch' || startsWith(github.event.release.tag_name, 'python/v')
if: true
runs-on: ubuntu-latest
steps:
- run: echo "Release tag starts with python/v, proceeding with release"
should-publish-wheels:
if: true && (github.event_name == 'workflow_dispatch' && inputs.publishWheels) || (github.event_name == 'release' && !github.event.release.prerelease)
if: true
runs-on: ubuntu-latest
steps:
- run: echo "Publishing wheels"
Expand Down

0 comments on commit ecdf1ea

Please sign in to comment.