Fix GitHub Action tag pattern

GitHub Actions currently doesn't support regular expressions, but
instead only "filter patterns".
https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
This commit is contained in:
Simon Steinbeiss 2021-10-19 11:51:53 +02:00 committed by Simon Steinbeiß
parent 8cd9fd79c6
commit a33f1a975b

View file

@ -3,7 +3,7 @@ name: "Create GitHub release"
on:
push:
tags:
- "v[0-9.]+"
- "v*"
jobs:
release: