Trying to fix report discord task #24

Merged
quentinlegot merged 3 commits from dev into master 2023-07-26 23:53:12 +02:00
3 changed files with 6 additions and 3 deletions

View File

@ -13,6 +13,8 @@ on:
env:
REPO_USERNAME: Altarik
REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }}
DISCORD_PUB_ID: ${{ secrets.DISCORD_PUB_ID }}
DISCORD_PUB_TOKEN: ${{ secrets.DISCORD_PUB_TOKEN }}
jobs:
build:

View File

@ -16,7 +16,7 @@ String webhookId = getEnv("DISCORD_PUB_ID", local.getProperty("discord_pub_id"))
String webhookToken = getEnv("DISCORD_PUB_TOKEN", local.getProperty("discord_pub_token"))
String repoUrl = "https://repo.altarik.fr/#/" + (project.version.endsWith('SNAPSHOT') ? 'snapshots/' : 'releases/') + project.group.replace(".", "/") + "/" + project.rootProject.name + "/" + project.version
var reportConfig = new ReportDiscord.ReportData("https://discord.com/api/", webhookId, webhookToken, "Update " + project.version + " has been published", repoUrl);
var reportConfig = new ReportDiscord.ReportData("https://discord.com/api/", webhookId, webhookToken, project.rootProject.name, "Update " + project.version + " has been published", repoUrl);
allprojects {
apply plugin: 'maven-publish'

View File

@ -26,7 +26,8 @@ public abstract class ReportDiscord extends DefaultTask {
{
"embeds": [
{
"title": "A new update for Toolbox is available",
"title": "A new update of\s""" + data.projectName() + """
is available",
"description":\s""" + "\"" + message + "\"" + """
,
"url":\s""" + "\"" + data.url() + "\"" + """
@ -48,7 +49,7 @@ public abstract class ReportDiscord extends DefaultTask {
}
}
public record ReportData(String baseUrl, String webhookId, String webhookToken, String message, String url) {
public record ReportData(String baseUrl, String webhookId, String webhookToken, String projectName, String message, String url) {
}