Skip to content

Commit d2a3a93

Browse files
committed
fix workflow github action
1 parent 62608e2 commit d2a3a93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: 'Create changelog'
3939
id: Changelog
4040
run: |
41-
changelog="$({github.event.pull_request.body})"
41+
changelog="${{github.event.pull_request.body}}"
4242
changelog="${changelog//'%'/'%25'}"
4343
changelog="${changelog//$'\n'/'%0A'}"
4444
changelog="${changelog//$'\r'/'%0D'}"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: 'Create changelog'
4141
id: Changelog
4242
run: |
43-
changelog="$({github.event.pull_request.body})"
43+
changelog="${{github.event.pull_request.body}}"
4444
changelog="${changelog//'%'/'%25'}"
4545
changelog="${changelog//$'\n'/'%0A'}"
4646
changelog="${changelog//$'\r'/'%0D'}"

0 commit comments

Comments
 (0)