Skip to content

Commit

Permalink
fix: publish wheels when release happens (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Oct 2, 2022
1 parent 28a96d8 commit 45e8ac0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: Wheels

on:
release:
types: [published]
workflow_run:
workflows: [CI]
branch: [main]
types:
- completed

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
if: github.event_name == 'release' && github.event.action == 'published'

strategy:
matrix:
os: [ubuntu-20.04]
Expand Down

0 comments on commit 45e8ac0

Please sign in to comment.