Discord Release Notification #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Discord Release Notification | |
on: | |
release: | |
types: [published, created, edited] | |
workflow_dispatch: | |
jobs: | |
notify_discord: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set test variables | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
run: | | |
echo "RELEASE_TAG=v1.0.0-test" >> $GITHUB_ENV | |
echo "RELEASE_NAME=Test Release" >> $GITHUB_ENV | |
echo "RELEASE_BODY=This is a test release." >> $GITHUB_ENV | |
echo "RELEASE_URL=https://example.com" >> $GITHUB_ENV | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- name: Dump job context | |
env: | |
JOB_CONTEXT: ${{ toJson(job) }} | |
run: echo "$JOB_CONTEXT" | |
- name: Send Discord notification | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_ANN }} | |
RELEASE_TAG: ${{ env.RELEASE_TAG || github.event.release.tag_name }} | |
RELEASE_NAME: ${{ env.RELEASE_NAME || github.event.release.name }} | |
RELEASE_BODY: ${{ env.RELEASE_BODY || github.event.release.body }} | |
RELEASE_URL: ${{ env.RELEASE_URL || github.event.release.html_url }} | |
run: | | |
echo "Sending notification for release: $RELEASE_TAG" | |
curl -H "Content-Type: application/json" -X POST -d @- $DISCORD_WEBHOOK <<EOF | |
{ | |
"embeds": [{ | |
"title": "New Release: $RELEASE_TAG", | |
"description": "$RELEASE_NAME\n\n$RELEASE_BODY", | |
"url": "$RELEASE_URL", | |
"color": 3066993 | |
}] | |
} | |
EOF |