From 4698455cd14920de0c2570831547ccca02aca724 Mon Sep 17 00:00:00 2001 From: Robert Rosendahl Date: Thu, 16 Jan 2025 22:58:37 +0100 Subject: [PATCH] fixed repository_name var in sendQAMail --- .gitea/workflows/sendQAMail.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/sendQAMail.yaml b/.gitea/workflows/sendQAMail.yaml index 14cc47b..eddf76a 100644 --- a/.gitea/workflows/sendQAMail.yaml +++ b/.gitea/workflows/sendQAMail.yaml @@ -36,7 +36,7 @@ jobs: run: | REPOSITORY_NAME=$(basename ${{ env.GITHUB_REPOSITORY }}) - echo "Subject: Neues Release: [${{ env.GITHUB_REPOSITORY#*/ }}]" > email.html + echo "Subject: Neues Release: $REPOSITORY_NAME" > email.html echo "From: ${{ vars.SMTP_SENDER }}" >> email.html echo "To: ${{ vars.SMTP_QA_RECIPIENT }}" >> email.html echo "Content-Type: text/html; charset=UTF-8" >> email.html