Skip to content

Commit

Permalink
Update release trigger type in GitHub Actions workflow
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nikosgram committed Aug 30, 2024
1 parent 2fd0352 commit 1b12499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Maven Package

on:
release:
types: [created]
types: [published]

jobs:
build:
Expand Down

0 comments on commit 1b12499

Please sign in to comment.