From 8020f31573700b6aa75f7ad893c0a943adbe6df1 Mon Sep 17 00:00:00 2001 From: hitanshu310 Date: Sun, 25 May 2025 02:56:17 +0530 Subject: [PATCH] Fixing docker login --- .gitea/workflows/test_image_build_push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test_image_build_push.yml b/.gitea/workflows/test_image_build_push.yml index 7f91e8e..bc38156 100644 --- a/.gitea/workflows/test_image_build_push.yml +++ b/.gitea/workflows/test_image_build_push.yml @@ -23,8 +23,8 @@ jobs: uses: docker/login-action@v3 with: registry: http://192.168.0.100:8928 - username: ${{gitea.actor}} - password: ${{ secrets.ACCESS_TOKEN }} + username: ${{gitea.repository_owner}} + password: ${{secrets.ACCESS_TOKEN}} - name: Gradle build run: ./gradlew bootBuildImage --imageName=http://192.168.0.100:8928/cftunnels:latest . - name: Push to Gitea Registry