This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch release/0.5.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-tools.git
The following commit(s) were added to refs/heads/release/0.5.0 by this push:
new e1d7e03 Fix Subversion script
e1d7e03 is described below
commit e1d7e03d2696719c28a7ef7248d8479f5e24f095
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Mon Jul 24 23:33:14 2023 +0200
Fix Subversion script
---
.github/workflows/build.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 9ae8134..4197cd0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -201,10 +201,10 @@ jobs:
https://dist.apache.org/repos/dist/dev/logging/log4j \
"$SVN_DIR"
cd "$SVN_DIR"
- find . -name "${DIST_BASENAME}-*" -type f -print0 | xargs -0 svn
delete
+ find . -name "${DIST_BASENAME}-*" -type f -print0 | xargs -0 -r svn
delete
cp "${DIST_FILEPATH}*" .
svn add "${DIST_FILEPATH}*"
- svn commit -m "Added \`${DIST_BASENAME}\` artifacts for release
\`${PROJECT_VERSION}\`"
+ svn commit -m "Added *fake* \`${DIST_BASENAME}\` artifacts for
release \`${PROJECT_VERSION}\`"
env:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}