summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/python.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index 52c655eebfe..c166d652ebd 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -1,5 +1,8 @@
name: CI
-on: [push, pull_request]
+on:
+ push:
+ branches:
+ - master
jobs:
build:
runs-on: ubuntu-latest
@@ -38,6 +41,7 @@ jobs:
run: |
nbdev_test_nbs
- name: Build and publish
+ if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.test_pypi_password }}