This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch release/10.1.0 in repository https://gitbox.apache.org/repos/asf/logging-parent.git
commit 2a18d204458d6c1454f83317df7a5c21a43470f0 Author: Volkan Yazıcı <[email protected]> AuthorDate: Thu Sep 28 11:15:50 2023 +0200 Fix CI changelog generation --- .github/workflows/deploy-release-reusable.yaml | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/.github/workflows/deploy-release-reusable.yaml b/.github/workflows/deploy-release-reusable.yaml index a3e768b..1147e41 100644 --- a/.github/workflows/deploy-release-reusable.yaml +++ b/.github/workflows/deploy-release-reusable.yaml @@ -119,26 +119,12 @@ jobs: run: | ./mvnw \ --non-recursive --batch-mode --errors --no-transfer-progress \ - -P changelog-release - git add src/changelog + -P changelog-release process-sources + git add src if [ -n "$(git status --porcelain)" ]; then git config user.name "ASF Logging Services RM" git config user.email [email protected] - git commit -S src/changelog -m "Release changelog for version \`$PROJECT_VERSION\`" - git push origin - fi - - - name: Commit generated sources - shell: bash - run: | - ./mvnw \ - --non-recursive --batch-mode --errors --no-transfer-progress \ - process-sources - git add src/site - if [ -n "$(git status --porcelain)" ]; then - git config user.name "ASF Logging Services RM" - git config user.email [email protected] - git commit -S src/site -m "Add auto-generated sources" + git commit -S src -m "Release changelog for version \`$PROJECT_VERSION\`" git push origin fi
