Skip to content

Commit f2d75fc

Browse files
committed
💚 fix release CI build
1 parent 0a965cf commit f2d75fc

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

‎.github/workflows/release.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@ jobs:
2626
uses: juliangruber/read-file-action@v1
2727
with:
2828
path: ./description.md
29+
- name: replace str
30+
id: node_use_description
31+
uses: mad9000/actions-find-and-replace-string@3
32+
with:
33+
source: ${{steps.description.outputs.content}}
34+
find: "`"
35+
replace: "\\`"
36+
2937
- name: create release
3038
id: create-release
3139
uses: actions/github-script@v6
@@ -36,7 +44,7 @@ jobs:
3644
repo: context.repo.repo,
3745
tag_name: `app-v${process.env.PACKAGE_VERSION}`,
3846
name: `UnityExtractor v${process.env.PACKAGE_VERSION}`,
39-
body: `${ steps.description.outputs.content }`,
47+
body: `${{ steps.node_use_description.outputs.content }}`,
4048
draft: true,
4149
prerelease: false
4250
})

0 commit comments

Comments
 (0)