This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/main by this push:
new f54435e21 AVRO-4041: Do not copy the .svn folder and any non-version
files
f54435e21 is described below
commit f54435e2167245c0ff66c281225f778728c87f5a
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Fri Aug 23 16:13:38 2024 +0300
AVRO-4041: Do not copy the .svn folder and any non-version files
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
---
.github/workflows/deploy-docs.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/deploy-docs.yml
b/.github/workflows/deploy-docs.yml
index eb299c889..2a5c522de 100644
--- a/.github/workflows/deploy-docs.yml
+++ b/.github/workflows/deploy-docs.yml
@@ -256,8 +256,8 @@ jobs:
- name: Checkout old docs versions from Subversion
run: |
svn checkout https://svn.apache.org/repos/asf/avro/site/publish/docs
- rm -rf docs/1.12.0
- mv docs/* ${{ runner.temp }}/website/docs/
+ rm -rf docs/1.12.0 docs/.svn
+ mv docs/1* ${{ runner.temp }}/website/docs/
- name: Push the new website
run: |