From 1b1249977a1581b5c5984b3b6fbed3fe177d442c Mon Sep 17 00:00:00 2001 From: Nikolaos Grammatikos <3318873+nikosgram@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:41:54 +0100 Subject: [PATCH] Update release trigger type in GitHub Actions workflow Changed the trigger type for the release event from 'created' to 'published'. This ensures the workflow runs only when a release is published, aligning it more closely with the intended deployment process. --- .github/workflows/maven-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml index f709513..271953d 100644 --- a/.github/workflows/maven-publish.yml +++ b/.github/workflows/maven-publish.yml @@ -5,7 +5,7 @@ name: Maven Package on: release: - types: [created] + types: [published] jobs: build: