fix usage of wrong quotes

This commit is contained in:
Mara Wörle 2025-07-09 09:20:28 +02:00
parent 76044c5fe8
commit 70232a01f8

View file

@ -74,9 +74,9 @@ jobs:
- name: Get Release Notes - name: Get Release Notes
id: releasenotes id: releasenotes
run: | run: |
RELEASENOTES=$(sed -n '/$GITHUB_REF_NAME/,/^### /{s/$GITHUB_REF_NAME/Changelog/;/# v/d;s/###/#/;p}' README.md) RELEASENOTES=$(sed -n "/$GITHUB_REF_NAME/,/^### /{s/$GITHUB_REF_NAME/Changelog/;/# v/d;s/###/#/;p}" README.md)
echo -e "Release Notes: \n$RELEASENOTES" echo -e "Release Notes: \n$RELEASENOTES"
echo "releasenotes='$RELEASENOTES'" >> $GITHUB_OUTPUT echo "releasenotes=$RELEASENOTES" >> $GITHUB_OUTPUT
- name: Download Binaries - name: Download Binaries
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3