From aaeb8e3a21b9773c46470b700a2ab0ae590e692b Mon Sep 17 00:00:00 2001 From: Igor Date: Wed, 6 Nov 2024 23:01:17 +0100 Subject: [PATCH] Fix synching from armbian-config --- .github/workflows/pull-from-armbian-config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-from-armbian-config.yml b/.github/workflows/pull-from-armbian-config.yml index 5f89a60f..6ffb77b6 100644 --- a/.github/workflows/pull-from-armbian-config.yml +++ b/.github/workflows/pull-from-armbian-config.yml @@ -43,9 +43,9 @@ jobs: rsync -avr docs/System/System.user.md ../documentation/docs/User-Guide_Armbian-Config/System.md # the rest goes under armbian-software - mkdir -p ../documentation/docs/User-Guide_Armbian-Software/ - rsync -avr docs/Software/* ../documentation/docs/ - + mkdir -p ../documentation/docs/User-Guide_Armbian-Software/ + rsync -avr --exclude="Software.user.md" --exclude="Benchy.user.md" docs/Software/* ../documentation/docs/User-Guide_Armbian-Software/ + #rsync -avr docs/Software/Containers.user.md ../documentation/docs/User-Guide_Armbian-Software/Containers.md #rsync -avr docs/Software/Desktops.user.md ../documentation/docs/User-Guide_Armbian-Software/Desktops.md #rsync -avr docs/Software/DevTools.user.md ../documentation/docs/User-Guide_Armbian-Software/DevTools.md