Compare commits

...

3 Commits

Author SHA1 Message Date
franukis fa540a9a95 Add Discord release notification workflow 2026-03-04 10:14:40 +01:00
franukis aa6607eb75 Fix changelog URL in MCT.xml
Updated changelog URL to point to the GitHub Pages site.
2026-02-27 08:22:40 +01:00
franukis dcba1a1489 Update version from 1.1.2 to 1.1.3 in MCT.xml 2026-02-27 08:17:11 +01:00
2 changed files with 23 additions and 3 deletions
+18
View File
@@ -0,0 +1,18 @@
name: Discord Release Notification
on:
release:
types: [published]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Send release to Discord
run: |
curl -H "Content-Type: application/json" \
-X POST \
-d '{
"content": "🚀 **New Release Published!**\n\n**${{ github.event.release.name }}**\n${{ github.event.release.html_url }}"
}' \
${{ secrets.DISCORD_WEBHOOK }}
+5 -3
View File
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>1.1.2</version>
<url>https://github.com/franukis/MCT_release/releases/download/v1.1.2/setup.msi</url>
<changelog>https://raw.githack.com/franukis/MCT_release/refs/heads/main/changelog.html</changelog>
<version>1.1.3</version>
<url>https://github.com/franukis/MCT_release/releases/download/v1.1.3/setup.msi</url>
<changelog>https://franukis.github.io/MCT_release/changelog.html</changelog>
<mandatory>false</mandatory>
</item>
@@ -23,3 +23,5 @@