We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a965cf commit f2d75fcCopy full SHA for f2d75fc
‎.github/workflows/release.yml
@@ -26,6 +26,14 @@ jobs:
26
uses: juliangruber/read-file-action@v1
27
with:
28
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
+
37
- name: create release
38
id: create-release
39
uses: actions/github-script@v6
@@ -36,7 +44,7 @@ jobs:
44
repo: context.repo.repo,
45
tag_name: `app-v${process.env.PACKAGE_VERSION}`,
46
name: `UnityExtractor v${process.env.PACKAGE_VERSION}`,
- body: `${ steps.description.outputs.content }`,
47
+ body: `${{ steps.node_use_description.outputs.content }}`,
40
48
draft: true,
41
49
prerelease: false
42
50
})
0 commit comments