From 9cca1411169aa834cf0d2acc754101264994b560 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Mon, 7 Sep 2026 09:43:45 +0200 Subject: [PATCH] fix: correct force-push syntax in publish-report action --- .gitea/actions/publish-report/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/actions/publish-report/action.yml b/.gitea/actions/publish-report/action.yml index a5c182e..1d7d7a4 100644 --- a/.gitea/actions/publish-report/action.yml +++ b/.gitea/actions/publish-report/action.yml @@ -125,4 +125,4 @@ runs: git add reports/ git diff --cached --quiet && echo "No changes" && exit 0 git commit -m "ci: update test report [skip ci]" - git --force push origin ${{ github.ref_name }} + git push --force origin ${{ github.ref_name }}