Edited CI workflow so that it's not triggered simultaneously on a tag push (since that would mean a "Release")
Yanis Zafirópulos 1265028+drkameleon@users.noreply.github.com
Wed, 20 Jan 2021 19:43:52 +0100
1 files changed,
2 insertions(+),
0 deletions(-)
jump to
M
.github/workflows/ci.yml
→
.github/workflows/ci.yml
@@ -5,8 +5,10 @@ on:
# Triggers the workflow on push or pull request events but only for the master branch push: branches: [ master ] + tags-ignore: [ '**' ] pull_request: branches: [ master ] + tags-ignore: [ '**' ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: