Skip to content

Commit

Permalink
ci-deploy: only on PR to main OR push to main with v tag
Browse files Browse the repository at this point in the history
  • Loading branch information
blackwer committed Nov 9, 2023
1 parent 31a98fa commit 1900e27
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ name: Build and upload to PyPI

# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main

jobs:
build_wheels:
Expand Down

0 comments on commit 1900e27

Please sign in to comment.