retrom-v0.7.7 #24
Workflow file for this run
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: Announcements | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
announce-to-discord: | |
name: Announce to Discord | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Announce | |
uses: SethCohen/[email protected] | |
with: | |
webhook_url: ${{ secrets.DISCORD_WEBHOOK }} | |
content: "<@&1290835052309119060> A new version of Retrom has been released, beep boop! :tada: :rocket: :tada:" | |
footer_timestamp: true | |
avatar_url: "https://raw.githubusercontent.com/JMBeresford/retrom/refs/heads/main/packages/client/icons/icon.png" | |
username: "Retrom Release Bot" |