From f3fbb9fd037682bf01fbb61142647cd6cf165963 Mon Sep 17 00:00:00 2001 From: George Gastaldi Date: Tue, 13 Aug 2024 11:18:21 -0300 Subject: [PATCH] Commit all doc include changes --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bfa68c2..8e91f76 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,8 +48,8 @@ jobs: run: | git checkout -b release mvn -B release:prepare -Prelease -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}} - if ! git diff --quiet docs/modules/ROOT/pages/includes/attributes.adoc; then - git add docs/modules/ROOT/pages/includes/attributes.adoc + if ! git diff --quiet docs/modules/ROOT/pages/includes; then + git add docs/modules/ROOT/pages/includes git commit -m "Update stable version for documentation" fi git checkout ${{github.base_ref}} @@ -63,8 +63,8 @@ jobs: run: | git checkout ${{steps.metadata.outputs.current-version}} mvn -B clean install -DskipTests -DskipITs - if ! git diff --quiet docs/modules/ROOT/pages/includes/attributes.adoc; then - git add docs/modules/ROOT/pages/includes/attributes.adoc + if ! git diff --quiet docs/modules/ROOT/pages/includes; then + git add docs/modules/ROOT/pages/includes git commit -m "Update stable version for documentation" # Move the tag after inclusion of documentation adjustments git tag -f ${{steps.metadata.outputs.current-version}}