Fix actions to run only when needed
This commit is contained in:
parent
289faefd60
commit
6f4637db08
2 changed files with 6 additions and 2 deletions
3
.github/workflows/release.yaml
vendored
3
.github/workflows/release.yaml
vendored
|
@ -21,7 +21,8 @@ jobs:
|
||||||
python-version: ${{ matrix.python }}
|
python-version: ${{ matrix.python }}
|
||||||
- name: Install tox
|
- name: Install tox
|
||||||
run: pip install tox
|
run: pip install tox
|
||||||
- name: Build release with tox
|
- name: Create release with tox
|
||||||
|
id: create_release
|
||||||
run: tox -e release
|
run: tox -e release
|
||||||
- name: Upload Release Asset
|
- name: Upload Release Asset
|
||||||
id: upload-release-asset
|
id: upload-release-asset
|
||||||
|
|
5
.github/workflows/unittests.yaml
vendored
5
.github/workflows/unittests.yaml
vendored
|
@ -1,6 +1,9 @@
|
||||||
name: unittests
|
name: unittests
|
||||||
|
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
tags-ignore:
|
||||||
|
- '*.*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
Loading…
Reference in a new issue