From 641e29da9a98f24ee0fb5463a6bbccc3796eb5f7 Mon Sep 17 00:00:00 2001 From: ranchimallflo Date: Fri, 6 Mar 2026 12:03:57 +0000 Subject: [PATCH] Update algorandwallet/.github/workflows/push-dappbundle.yml --- .../.github/workflows/push-dappbundle.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/algorandwallet/.github/workflows/push-dappbundle.yml b/algorandwallet/.github/workflows/push-dappbundle.yml index 543f252..6088c78 100644 --- a/algorandwallet/.github/workflows/push-dappbundle.yml +++ b/algorandwallet/.github/workflows/push-dappbundle.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - master jobs: build: @@ -27,10 +28,8 @@ jobs: echo "== Ensuring dappbundle repo exists ==" if [ ! -d "$BASE/dappbundle/.git" ]; then - echo "Cloning dappbundle..." git clone git@gitea.ranchimall.net:RanchiMall/dappbundle.git "$BASE/dappbundle" else - echo "Updating dappbundle..." cd "$BASE/dappbundle" git pull fi @@ -40,10 +39,16 @@ jobs: rm -rf "$BASE/dappbundle/$APP" git clone git@gitea.ranchimall.net:RanchiMall/$APP.git "$BASE/dappbundle/$APP" + echo "== Cleaning git metadata ==" + + cd "$BASE/dappbundle/$APP" + rm -rf .git .github .gitignore .gitattributes + cd "$BASE/dappbundle" + git config user.email "ranchimallfze@gmail.com" git config user.name "ranchimall" git add . - git commit -m "Auto-update $APP" || echo "No changes to commit" - git push \ No newline at end of file + git commit -m "Auto-update $APP" || echo "No changes" + git push \ No newline at end of file