This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git
The following commit(s) were added to refs/heads/main by this push:
new d11a5bf Install Subversion package in the deployment workflow
d11a5bf is described below
commit d11a5bf342920d01de84b4a3bbd2d492e39e1ea0
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)