diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index 79f1c6af..8e8a75bc 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -68,4 +68,10 @@ jobs: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: DiscordChatExporter.Gui/bin/Publish/Archive.zip asset_name: DiscordChatExporter.zip - asset_content_type: application/zip \ No newline at end of file + asset_content_type: application/zip + + - name: Notify Discord + run: | + curl '${{ secrets.DISCORD_WEBHOOK }}' \ + --data-raw '{"content":"[**DiscordChatExporter** ver. ${{ github.ref }} released](https://github.com/Tyrrrz/DiscordChatExporter/releases/latest)"}' \ + -H 'content-type: application/json' \ No newline at end of file