Merge pull request #1211 from paddatrapper/fix/release-action
Do not run release on every push to master
This commit is contained in:
commit
27a47fb429
|
@ -2,10 +2,10 @@ name: Create Release .tar.gz
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
|
||||||
# Sequence of patterns matched against refs/tags
|
# Sequence of patterns matched against refs/tags
|
||||||
tags:
|
tags:
|
||||||
- '\d+.\d+.\d+(~\s+\.\d+)*' # Originally '*', changes by @paddatrapper
|
# MAJ.MIN.BUG version with an optional -TYPE.VER (for example 3.0.0-alpha.8)
|
||||||
|
- '\d+.\d+.\d+(-\w+\.\d+)*'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
Loading…
Reference in New Issue