From f1200fc459ce0361124ccb7703ba367f4df0bfc7 Mon Sep 17 00:00:00 2001 From: Yasin Date: Sun, 24 Mar 2024 02:57:01 +0100 Subject: fix changlog new line problem --- .github/workflows/buildrelease.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/buildrelease.yml b/.github/workflows/buildrelease.yml index 8dca761f..e2c5fe9f 100644 --- a/.github/workflows/buildrelease.yml +++ b/.github/workflows/buildrelease.yml @@ -46,7 +46,7 @@ jobs: delimiter="$(openssl rand -hex 8)" { echo "changelog<<${delimiter}" - echo "$CHANGELOGtmp" + echo "$CHANGELOG" echo "${delimiter}" } >> $GITHUB_OUTPUT @@ -54,7 +54,7 @@ jobs: changelog="${CHANGELOG}" highlight_section=$(echo "$changelog" | awk '/## Highlight/{flag=1;next}/^$/{flag=0}flag') - highlight_section="# Highlight\n$highlight_section\n\nhttps://hysky.de/" + highlight_section=$'# Highlight\n'"$highlight_section"$'\n\nhttps://hysky.de/' # Format highlight_section with printf highlight_section=$(printf "%s" "$highlight_section") -- cgit From cd711be902e4b8bd2dbda653da46bd10125e62ad Mon Sep 17 00:00:00 2001 From: Yasin Date: Sun, 24 Mar 2024 02:58:28 +0100 Subject: 1.19.0 --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/crash_report.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index a5226bb2..6ffca898 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -43,7 +43,7 @@ body: attributes: label: Skyblocker Version description: What version of Skyblocker are you running? Every part is important! If you do not know what version you are using, look at the file name in your "mods" folder. - placeholder: ex. skyblocker-1.17.0+1.20.4.jar + placeholder: ex. skyblocker-1.19.0+1.20.4.jar validations: required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/crash_report.yml b/.github/ISSUE_TEMPLATE/crash_report.yml index e29e0950..7135848d 100644 --- a/.github/ISSUE_TEMPLATE/crash_report.yml +++ b/.github/ISSUE_TEMPLATE/crash_report.yml @@ -24,7 +24,7 @@ body: attributes: label: Skyblocker Version description: What version of Skyblocker are you running? Every part is important! If you do not know what version you are using, look at the file name in your "mods" folder. - placeholder: ex. skyblocker-1.17.0+1.20.4.jar + placeholder: ex. skyblocker-1.19.0+1.20.4.jar validations: required: true - type: textarea -- cgit