Don't build binaries on push

This commit is contained in:
John J. Camilleri
2020-11-18 23:24:38 +01:00
parent 8e9212d059
commit d39e4a22a8
4 changed files with 5 additions and 4 deletions

View File

@@ -1,7 +1,6 @@
name: Build Debian Package name: Build Debian Package
on: on:
push:
workflow_dispatch: workflow_dispatch:
jobs: jobs:

View File

@@ -1,7 +1,6 @@
name: Build macOS Package name: Build macOS Package
on: on:
push:
workflow_dispatch: workflow_dispatch:
jobs: jobs:

View File

@@ -1,6 +1,10 @@
name: Build & Publish Python Package name: Build & Publish Python Package
on: [push, pull_request] # Trigger the workflow on push or pull request, but only for the master branch
on:
pull_request:
push:
branches: [master]
jobs: jobs:
build_wheels: build_wheels:

View File

@@ -1,7 +1,6 @@
name: Build Windows Package name: Build Windows Package
on: on:
push:
workflow_dispatch: workflow_dispatch:
jobs: jobs: