Skip to content

Commit

Permalink
enable wf
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed Mar 15, 2024
1 parent 5cd07f6 commit 45fe43c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-python-grpc-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ on:

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

0 comments on commit 45fe43c

Please sign in to comment.