Skip to content

Commit 462a69b

Browse files
committed
ci release: fix Groonga/Mroonga version detection
1 parent 738f160 commit 462a69b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ jobs:
6464
mysql_version=$(grep -o 'mysql:[0-9.]*' ${dockerfile} | \
6565
cut -d: -f2 | \
6666
head -n1)
67-
mroonga_version=$(grep -o 'groonga_version=[0-9.]*' ${dockerfile} | \
68-
cut -d: -f2 | \
67+
mroonga_version=$(grep -o 'mroonga_version=[0-9.]*' ${dockerfile} | \
68+
cut -d= -f2 | \
6969
head -n1)
7070
groonga_version=$(grep -o 'groonga_version=[0-9.]*' ${dockerfile} | \
71-
cut -d: -f2 | \
71+
cut -d= -f2 | \
7272
head -n1)
7373
echo "MySQL ${mysql_version}, Mroonga ${mroonga_version}, Groonga ${groonga_version}" | tee release-title.txt
7474
cat <<RELEASE_NOTE | tee release-note.md

0 commit comments

Comments
 (0)