Skip to content

Commit

Permalink
separate the builds
Browse files Browse the repository at this point in the history
  • Loading branch information
gregoil committed Sep 22, 2019
1 parent 9b7a25a commit 2d45da9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ jobs:
fail-fast: true
steps:
- uses: actions/checkout@v1
- name: Build
- name: Prepare environment
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: actions/setup-python@v1
- name: Build
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
run: |
pip install wheel
python setup.py sdist bdist_wheel
Expand Down

0 comments on commit 2d45da9

Please sign in to comment.