From 70232a01f8eb75482fe5349bdc44eb000bff08cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mara=20W=C3=B6rle?= Date: Wed, 9 Jul 2025 09:20:28 +0200 Subject: [PATCH] fix usage of wrong quotes --- .forgejo/workflows/publish-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/publish-release.yml b/.forgejo/workflows/publish-release.yml index 4fec44c..f471a6b 100644 --- a/.forgejo/workflows/publish-release.yml +++ b/.forgejo/workflows/publish-release.yml @@ -74,9 +74,9 @@ jobs: - name: Get Release Notes id: releasenotes 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 "releasenotes='$RELEASENOTES'" >> $GITHUB_OUTPUT + echo "releasenotes=$RELEASENOTES" >> $GITHUB_OUTPUT - name: Download Binaries uses: actions/download-artifact@v3