From 958fd42cae584e82321b8bc1de1570a6329f8026 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner Date: Tue, 13 May 2025 13:57:52 +0200 Subject: [PATCH] Changes to gitea workflow --- .github/workflows/push-to-gitea.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-to-gitea.yml b/.github/workflows/push-to-gitea.yml index 747527a..46f1dd0 100644 --- a/.github/workflows/push-to-gitea.yml +++ b/.github/workflows/push-to-gitea.yml @@ -18,7 +18,7 @@ jobs: git config --global user.name "Push From Github" git config --global user.email "actions@github.com" git remote add gitea http://$GITEA_USER:$GITEA_TOKEN@git.community-scripts.org/community-scripts/ProxmoxVED.git - git push gitea HEAD:main --mirror + git push gitea main --mirror env: GITEA_USER: ${{ secrets.GITEA_USERNAME }} GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}