Skip to content

1.34 - Neuer Server, neue Plugins, Neues Glück 🍀 #2

1.34 - Neuer Server, neue Plugins, Neues Glück 🍀

1.34 - Neuer Server, neue Plugins, Neues Glück 🍀 #2

Workflow file for this run

name: Notify Discord on Release
on:
release:
types: [published]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Send message to Discord
uses: Ilshidur/action-discord@v2
with:
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
message: |
**Neues Plugin Release veröffentlicht!**
**Name:** ${{ github.release.name }}
**Beschreibung:** ${{ github.release.body }}
**Version:** ${{ github.release.tag_name }}
**Link:** ${{ github.release.html_url }}