This is an automated email from the ASF dual-hosted git repository.

tobous pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/db-jdo-site.git

commit f9f5025901053edb8d6d2aeeec9e8c6c77468212
Author: Tobias Bouschen <tobias.bousc...@googlemail.com>
AuthorDate: Tue Feb 9 13:30:12 2021 +0100

    Ensure that all changes are staged by deploy action
    
    Removes the implicit assumption that the action is working in the
    repository root by using the '-A' option to stage everything.
    
    Also introduces the '-v' option to make the step more verbose for better
    debugging.
---
 .github/workflows/deploy-site.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/deploy-site.yml 
b/.github/workflows/deploy-site.yml
index eb6c817..d61ecc4 100644
--- a/.github/workflows/deploy-site.yml
+++ b/.github/workflows/deploy-site.yml
@@ -119,7 +119,7 @@ jobs:
           echo
 
           echo "Staging new content"
-          git add .
+          git add -v -A
           echo
 
           echo "Committing changes"

Reply via email to