Fix actions to run only when needed

This commit is contained in:
Vladan Popovic 2020-09-07 15:11:06 +02:00
parent 289faefd60
commit 6f4637db08
2 changed files with 6 additions and 2 deletions

View File

@ -21,7 +21,8 @@ jobs:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Build release with tox
- name: Create release with tox
id: create_release
run: tox -e release
- name: Upload Release Asset
id: upload-release-asset

View File

@ -1,6 +1,9 @@
name: unittests
on: [push]
on:
push:
tags-ignore:
- '*.*'
jobs:
build: