From 9d8e057511f43fc8de333bbf16468ae9ae0c7e17 Mon Sep 17 00:00:00 2001 From: Christoph Pirkl Date: Fri, 8 Mar 2024 14:42:01 +0100 Subject: [PATCH] Use verify-release mode in release.yml --- .../templates/.github/workflows/release.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/project-keeper/src/main/resources/templates/.github/workflows/release.yml b/project-keeper/src/main/resources/templates/.github/workflows/release.yml index 973471fb..68a5d12d 100644 --- a/project-keeper/src/main/resources/templates/.github/workflows/release.yml +++ b/project-keeper/src/main/resources/templates/.github/workflows/release.yml @@ -95,23 +95,7 @@ jobs: - name: Verify release preconditions id: verify-release run: | - #mvn --batch-mode com.exasol:project-keeper-maven-plugin:verify-release --projects . - echo "version=1.2.3" >> "$GITHUB_OUTPUT" - echo "release-title=1.2.3: My first automatic release" >> "$GITHUB_OUTPUT" - - echo "release-notes<> "$GITHUB_OUTPUT" - echo "Release notes line 1" >> "$GITHUB_OUTPUT" - echo "Release notes line 2" >> "$GITHUB_OUTPUT" - echo "Release notes line 3" >> "$GITHUB_OUTPUT" - echo "EOF" >> "$GITHUB_OUTPUT" - - echo "release-artifacts<> "$GITHUB_OUTPUT" - echo "target/dummy-jar-name.jar" >> "$GITHUB_OUTPUT" - echo "target/testing-release-robot-0.3.3-sources.jar" >> "$GITHUB_OUTPUT" - echo "doc/changes/changes_0.3.3.md" >> "$GITHUB_OUTPUT" - echo "target/testing-release-robot-0.3.3-javadoc.jar" >> "$GITHUB_OUTPUT" - echo "EOF" >> "$GITHUB_OUTPUT" - + mvn --batch-mode com.exasol:project-keeper-maven-plugin:verify-release --projects . echo "$GITHUB_OUTPUT" env: GITHUB_TOKEN: ${{ github.token }}