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

kranti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iggy-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 65a99d912 Update deploy.yml workflow
65a99d912 is described below

commit 65a99d912f527c5283d4d152343e2689c026bbf0
Author: kparisa <[email protected]>
AuthorDate: Sun Feb 9 22:22:46 2025 -0800

    Update deploy.yml workflow
---
 .github/workflows/deploy.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 12519a5c0..b150f42d1 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -24,6 +24,7 @@ jobs:
       - name: Copy ASF config
         run: |
           cp .asf.yaml build/.asf.yaml  # Ensure .asf.yaml is inside build 
directory
+          ls -la build/  # Debugging step to confirm file is present
 
       - name: Deploy to asf-site
         run: |
@@ -32,14 +33,16 @@ jobs:
           git checkout --orphan asf-site
           git rm -rf .
           mv build/* .
+          ls -la #debugging for .asf.yaml file
           rm -rf build
+          ls -la #debugging for .asf.yaml file
 
           # Ensure .asf.yaml is present before commit
           if [ ! -f ".asf.yaml" ]; then
             echo "ERROR: .asf.yaml is missing!"
             exit 1
           fi
-          
+
           git add .
           git commit -m "Deploy updated Apache Iggy site"
           git push --force origin asf-site
\ No newline at end of file

Reply via email to