From a194fca28013467d5161aaf1d3827bbe1252b3a6 Mon Sep 17 00:00:00 2001 From: Rafael Ramos Date: Wed, 7 Aug 2024 09:31:11 -0300 Subject: [PATCH] update cd workflow (#27) * Update release template and version in pom Add a template section to the release-drafter.yml for better release notes and update the plugin version to 2.0.0-SNAPSHOT in pom.xml. This sets the stage for a major release with potentially breaking changes. * enable cd * update cd workflow --- .github/workflows/cd.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index b226836..f371773 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -7,9 +7,13 @@ on: types: - completed +permissions: + checks: read + contents: write + jobs: maven-cd: - uses: jenkins-infra/github-reusable-workflows/.github/workflows/maven-cd.yml@setup + uses: jenkins-infra/github-reusable-workflows/.github/workflows/maven-cd.yml@v1 secrets: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} - MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }} \ No newline at end of file + MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }}