Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka committed Feb 28, 2024
1 parent f3b7f79 commit 122ea21
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-wheel.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Build PyPi Wheel
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
- 'release/*'
- 'release/**'
push:
branches:
- main
Expand All @@ -23,8 +24,8 @@ concurrency:
# missing release tag workflow/needs to be added in
env:
INTERNAL: ${{ github.event_name != 'schedule' }}
RELEASE: ${{ github.ref == 'refs/heads/release/[0-9]+.[0-9]+' && (github.event.action == 'opened' || github.event.action == 'synchronize')}}
DEV: ${{ github.ref == 'main' && (github.event.action == 'opened' || github.event.action == 'synchronize')}}
RELEASE: ${{ github.base_ref == 'refs/heads/release/[0-9]+.[0-9]+' && github.event_name == 'pull_request'}}
DEV: ${{ github.base_ref == 'main' && github.event_name == 'pull_request'}}
NAME: ${{ github.event.number }}

jobs:
Expand Down

0 comments on commit 122ea21

Please sign in to comment.