Skip to content

Commit 2d82fcc

Browse files
Fix #65: changelog variable assignment (#97)
1 parent 69a6fcf commit 2d82fcc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-and-release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,11 @@ jobs:
794794

795795
- name: Append scan results to changelog
796796
run: |
797-
changelog="${{ env.CHANGELOG }}"
797+
changelog=$(cat <<'EOOOOOOOF'
798+
${{ env.CHANGELOG }}
799+
EOOOOOOOF
800+
)
801+
798802
links="${{ steps.virus_total.outputs.analysis }}"
799803
800804
# Create a temporary file for the changelog:

0 commit comments

Comments
 (0)