mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-08 21:03:29 +01:00
Merge pull request #204 from richm/allow-v-prefix-in-version
keep v prefix in version/tag
This commit is contained in:
commit
2da40a9e66
1 changed files with 1 additions and 1 deletions
2
.github/workflows/changelog_to_tag.yml
vendored
2
.github/workflows/changelog_to_tag.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
set -euxo pipefail
|
set -euxo pipefail
|
||||||
print=false
|
print=false
|
||||||
while read -r line; do
|
while read -r line; do
|
||||||
if [[ "$line" =~ ^\[([0-9]+\.[0-9]+\.[0-9]+)\]\ -\ [0-9-]+ ]]; then
|
if [[ "$line" =~ ^\[(v[0-9]+\.[0-9]+\.[0-9]+)\]\ -\ [0-9-]+ ]]; then
|
||||||
if [ "$print" = false ]; then
|
if [ "$print" = false ]; then
|
||||||
_tagname="${BASH_REMATCH[1]}"
|
_tagname="${BASH_REMATCH[1]}"
|
||||||
echo "$line"
|
echo "$line"
|
||||||
|
|
Loading…
Reference in a new issue