From d82f688f6962f2beef9a753f354e18cf810e4660 Mon Sep 17 00:00:00 2001 From: makew Date: Sun, 22 Mar 2026 09:45:28 +0200 Subject: [PATCH] kaniko --- .gitea/workflows/gitea-bp.yaml | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/.gitea/workflows/gitea-bp.yaml b/.gitea/workflows/gitea-bp.yaml index a91f403..bdf1d50 100644 --- a/.gitea/workflows/gitea-bp.yaml +++ b/.gitea/workflows/gitea-bp.yaml @@ -7,23 +7,11 @@ jobs: container: catthehacker/ubuntu:act-latest steps: - - name: Checkout - uses: actions/checkout@v4 - - - - name: Login to Gitea Registry - uses: docker/login-action@v3 + - name: Build and push Docker image + uses: https://code.thetadev.de/actions/kaniko@v1 with: - registry: gitea.paddington.fi # Replace with your Gitea instance URL + registry: gitea.paddington.fi + image: myapp:latest username: make password: ${{ secrets.TOKEN }} - - - name: Build and Push - uses: docker/build-push-action@v5 - with: - context: . - push: true - platforms: linux/amd64,linux/arm64 - tags: | - gitea.paddington.fi/make/your-repo:latest - gitea.paddington.fi/make/your-repo:${{ github.sha }} \ No newline at end of file + cache: true \ No newline at end of file