mirror of https://gitlab.com/basile.b/dexed.git
fix #23 - regex to take last changelog part does not work
This commit is contained in:
parent
946163276a
commit
4aa64dc240
|
@ -27,3 +27,4 @@ bin
|
||||||
public
|
public
|
||||||
dcd
|
dcd
|
||||||
d-scanner
|
d-scanner
|
||||||
|
extract_last_changelog_part
|
||||||
|
|
|
@ -102,7 +102,8 @@ if [ ! -z "$GITLAB_CI" ]; then
|
||||||
ZP2_NAME="dexed.$ver.linux64.zip"
|
ZP2_NAME="dexed.$ver.linux64.zip"
|
||||||
|
|
||||||
# read the log
|
# read the log
|
||||||
LOG=$(grep -Poz "##[\s\S]*?(?=# v)" ../CHANGELOG.md) # capture all starting from "##" and until "# v"
|
ldc2 extract_last_changelog_part.d
|
||||||
|
LOG=$(./extract_last_changelog_part)
|
||||||
LOG=$(echo "$LOG" | sed -z 's/\n/\\n/g' | sed -z 's/\"/\\"/g')
|
LOG=$(echo "$LOG" | sed -z 's/\n/\\n/g' | sed -z 's/\"/\\"/g')
|
||||||
|
|
||||||
ASSET_RPM='{ "name" : "'$RPM_NAME'" , "url" : "'$LNK_BASE$RPM_NAME'" , "filepath" : "/binaries/'$RPM_NAME'" }'
|
ASSET_RPM='{ "name" : "'$RPM_NAME'" , "url" : "'$LNK_BASE$RPM_NAME'" , "filepath" : "/binaries/'$RPM_NAME'" }'
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
module extract_last_changelog_part;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
import std.regex : matchFirst;
|
||||||
|
import std.file : readText;
|
||||||
|
import std.stdio : write;
|
||||||
|
import std.string : strip;
|
||||||
|
|
||||||
|
readText("../CHANGELOG.md")
|
||||||
|
.matchFirst(`##[\s\S]*?(?=# v)`)
|
||||||
|
.front
|
||||||
|
.strip
|
||||||
|
.write;
|
||||||
|
}
|
Loading…
Reference in New Issue