This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch release/12.0.0
in repository https://gitbox.apache.org/repos/asf/logging-parent.git
The following commit(s) were added to refs/heads/release/12.0.0 by this push:
new 21341d1 Install Subversion package in the deployment workflow
21341d1 is described below
commit 21341d1c39a221825c50c093545f28ac91eadec4
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Fri Feb 7 20:59:05 2025 +0100
Install Subversion package in the deployment workflow
Subversion is not by default shipped with the most recent Ubuntu.
Hence, needs to be manually installed.
---
.github/workflows/deploy-release-reusable.yaml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.github/workflows/deploy-release-reusable.yaml
b/.github/workflows/deploy-release-reusable.yaml
index 6c2e852..4797c52 100644
--- a/.github/workflows/deploy-release-reusable.yaml
+++ b/.github/workflows/deploy-release-reusable.yaml
@@ -268,6 +268,9 @@ jobs:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
run: |
+ # Install Subversion
+ sudo apt install --assume-yes --no-install-recommends subversion
+
# Find the effective Git commit ID
export COMMIT_ID=$(git rev-parse HEAD)