Merge pull request #1211 from paddatrapper/fix/release-action

Do not run release on every push to master
This commit is contained in:
Robb 2021-05-27 12:24:19 -04:00 committed by GitHub
commit 27a47fb429
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,10 +2,10 @@ name: Create Release .tar.gz
on:
push:
branches: [ master ]
# Sequence of patterns matched against refs/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:
jobs: