1
Fork 0

Fix error in build action when pushing release

This commit is contained in:
Viktor Strate Kløvedal 2021-04-03 23:13:29 +02:00 committed by GitHub
parent 8ec2a7789b
commit a2c13d6fa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ jobs:
if [[ $VERSION =~ ^(([0-9]{1,3})\.[0-9]{1,3})\.[0-9]{1,3}$ ]]; then if [[ $VERSION =~ ^(([0-9]{1,3})\.[0-9]{1,3})\.[0-9]{1,3}$ ]]; then
VERSION_MINOR=${BASH_REMATCH[1]} VERSION_MINOR=${BASH_REMATCH[1]}
VERSION_MAJOR=${BASH_REMATCH[2]} VERSION_MAJOR=${BASH_REMATCH[2]}
TAGS+=("${VERSION_MAJOR}", "${VERSION_MINOR}") TAGS+=("${VERSION_MAJOR}" "${VERSION_MINOR}")
fi fi
for TAG in ${TAGS[*]}; do for TAG in ${TAGS[*]}; do