1
0

fixed quotation marks in sendQAMail

This commit is contained in:
Robert Rosendahl 2025-01-16 23:05:25 +01:00
parent 4698455cd1
commit 89ccddf286

View File

@ -46,10 +46,10 @@ jobs:
echo "<html>" >> email.html
echo "<body>" >> email.html
echo "<h1>$REPOSITORY_NAME ${{ inputs.version }}</h1>" >> email.html
echo "<h1>Ein neues <a href="https://gitea.greyhound-software.com/${{ env.GITHUB_REPOSITORY }}/releases/tag/${{ inputs.tag }}">Release</a> für <a href="https://gitea.greyhound-software.com/${{ env.GITHUB_REPOSITORY }}">$REPOSITORY_NAME</a> wurde erstellt.</h1>" >> email.html
echo "<h1>Ein neues <a href="\""https://gitea.greyhound-software.com/${{ env.GITHUB_REPOSITORY }}/releases/tag/${{ inputs.tag }}"\"">Release</a> für <a href="\""https://gitea.greyhound-software.com/${{ env.GITHUB_REPOSITORY }}"\"">$REPOSITORY_NAME</a> wurde erstellt.</h1>" >> email.html
echo "<p><strong>Version:</strong> ${{ inputs.version }}</p>" >> email.html
echo "<p><strong>Milestone:</strong> ${{ inputs.milestone }}</p>" >> email.html
echo "<p>Liste der gelösten Issues: <a href="https://gitea.greyhound-software.com/${{ env.GITHUB_REPOSITORY }}/milestone/${{ inputs.milestone }}">Issues</a></p>" >> email.html
echo "<p>Liste der gelösten Issues: <a href="\""https://gitea.greyhound-software.com/${{ env.GITHUB_REPOSITORY }}/milestone/${{ inputs.milestone }}"\"">Issues</a></p>" >> email.html
echo "</body>" >> email.html
echo "</html>" >> email.html
- name: Send Email