From bf6ff24d13c8ecec75a78c4ebb2d418c84fcfdc0 Mon Sep 17 00:00:00 2001 From: rohit Date: Tue, 2 Dec 2025 19:07:01 +0000 Subject: [PATCH] Update .woodpecker.yml --- .woodpecker.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index bb098c2..01f0eda 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -50,11 +50,13 @@ steps: when: status: [ success ] commands: - - echo "Verifying local git integrity..." - - git fsck --full - git config --global user.name "woodpecker" - git config --global user.email "ci@localhost" + - git remote add github https://$GITHUB_TOKEN@github.com/Magiciian/dummy-app.git - - git fetch github main - - git rebase github/main - - git push github HEAD:main + + # NO FETCH + # NO REBASE + # Just overwrite GitHub main with Gitea test + - git push -f github HEAD:main +