From 204c04736b198caff99b83abff691b8e8d94e36b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sat, 14 Mar 2026 19:57:26 +0000 Subject: [PATCH] moved to int128 --- .gitea/workflows/ docker-image.deploy.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ docker-image.deploy.yml b/.gitea/workflows/ docker-image.deploy.yml index ea9dfe0..bee2c78 100644 --- a/.gitea/workflows/ docker-image.deploy.yml +++ b/.gitea/workflows/ docker-image.deploy.yml @@ -11,21 +11,22 @@ jobs: build-image: runs-on: oci-image-builder + steps: - name: Checkout code uses: actions/checkout@v4 - name: Build and push image with Kaniko - uses: aevea/action-kaniko@v1 + uses: int128/kaniko-action@v1 with: registry: git.limbosolutions.com username: ${{ secrets.GITLIMBO_DOCKER_REGISTRY_USERNAME }} password: ${{ secrets.GITLIMBO_DOCKER_REGISTRY_PASSWORD }} - # Path to the Dockerfile and build context - dockerfile: pbsclient/docker/Dockerfile - path: pbsclient + # Build context and Dockerfile + context: ./pbsclient + dockerfile: ./pbsclient/docker/Dockerfile - # Final image destination - destination: git.limbosolutions.com/kb/pbsclient:latest + # Image destination + destination: git.limbosolutions.com/kb/pbsclient:latest \ No newline at end of file