We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ca2a17 commit 5c84314Copy full SHA for 5c84314
1 file changed
.github/workflows/discord-release-notification.yml
@@ -20,9 +20,10 @@ jobs:
20
RELEASE_TIMESTAMP: ${{ github.event.release.published_at }}
21
REPO: ${{ github.repository }}
22
run: |
23
+ DESC=$(printf '%s\n\n%s' "$RELEASE_NAME" "$RELEASE_BODY")
24
PAYLOAD=$(jq -n \
25
--arg title "🚀 New Release: $RELEASE_TAG" \
- --arg desc "$RELEASE_NAME\n\n$RELEASE_BODY" \
26
+ --arg desc "$DESC" \
27
--arg url "$RELEASE_URL" \
28
--arg author "$RELEASE_AUTHOR" \
29
--arg repo "$REPO" \
0 commit comments