1 parent 06042a9 commit e8e7fe6Copy full SHA for e8e7fe6
1 file changed
.github/workflows/build_dist.yml
@@ -51,8 +51,15 @@ jobs:
51
body: ${{ steps.latest_release.outputs.body }}
52
with:
53
script: |
54
- const body = process.env.body;
55
- return body.slice(1,-1);
+ let body = process.env.body;
+ console.log("Received Release Text:")
56
+ console.log(body)
57
+ body = body.slice(1,-1);
58
+ body = body.replaceAll("\\r", "\r");
59
+ body = body.replaceAll("\\n", "\n");
60
+ console.log("Output Release Text:")
61
62
+ return body;
63
result-encoding: string
64
- name: Re-create current release with new tag
65
if: ${{ steps.is_patch.outputs.result == 'true' }}
0 commit comments