This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch release/1.10.0
in repository https://gitbox.apache.org/repos/asf/logging-parent.git
The following commit(s) were added to refs/heads/release/1.10.0 by this push:
new 25cf9cd Fix `svn co`
25cf9cd is described below
commit 25cf9cdd59453a8412bd4b307ccc5a8874366d62
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Mon Sep 4 21:17:04 2023 +0200
Fix `svn co`
---
.github/workflows/deploy-release-reusable.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/deploy-release-reusable.yml
b/.github/workflows/deploy-release-reusable.yml
index abb5b6e..9544f37 100644
--- a/.github/workflows/deploy-release-reusable.yml
+++ b/.github/workflows/deploy-release-reusable.yml
@@ -129,9 +129,10 @@ jobs:
--depth files \
"https://dist.apache.org/repos/dist/dev/logging" \
"$SVN_DIR"
+ cd "$SVN_DIR"
+ svn up --depth files "$PROJECT_NAME"
# Switch to the project folder
- cd "$SVN_DIR"
if [ \! -d "$PROJECT_NAME" ]; then
mkdir -p "$PROJECT_NAME"
svn add "$PROJECT_NAME"