From fa216af364eb5c1fd4da43b8433b5647459b9b29 Mon Sep 17 00:00:00 2001 From: CodingPhoenixx Date: Thu, 28 May 2026 12:52:29 +0200 Subject: [PATCH] Replace Gitea checkout action with manual git clone and checkout steps in publish.yml --- .gitea/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index de52453..1a4745f 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -15,7 +15,9 @@ jobs: steps: - name: Checkout Code - uses: https://gitea.com/actions/checkout@v4 + run: | + git clone "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@${{ github.server_url }}/${{ github.repository }}.git" . + git checkout ${{ github.sha }} - name: Version aus Gradle auslesen id: get_version