From c88f1abd4a0ce66dc0ab2c8328ead52b87dec467 Mon Sep 17 00:00:00 2001 From: Tommy Skaug Date: Fri, 3 Jan 2025 14:54:55 +0100 Subject: [PATCH] misc --- .forgejo/workflows/build-images.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.forgejo/workflows/build-images.yaml b/.forgejo/workflows/build-images.yaml index 58f2b15..9628cfa 100644 --- a/.forgejo/workflows/build-images.yaml +++ b/.forgejo/workflows/build-images.yaml @@ -33,14 +33,9 @@ jobs: - name: Build and Push with Kaniko uses: https://code.252.no/pub/kaniko-action@latest with: - # This is the directory that contains your Dockerfile, metadata.yaml, ci/version.sh, etc. context: ${{ steps.set-context.outputs.context_dir }} - - # Kaniko will look for "Dockerfile" by default in the `context` directory. - # Provide multiple tags (comma-separated) so you push both "latest" and a version-specific tag: destinations: > - code.252.no/${{ github.repository }}/${{ github.event.inputs.app }}:latest, code.252.no/${{ github.repository }}/${{ github.event.inputs.app }}:${{ steps.read-version.outputs.version }} - + code.252.no/${{ github.repository }}/${{ github.event.inputs.app }}:latest code.252.no/${{ github.repository }}/${{ github.event.inputs.app }}:${{ steps.read-version.outputs.version }} credentials: "code.252.no=tommy:${{ secrets.REGISTRY_TOKEN }}" push: "true" cache: "false"