From 78fb6b5148ffe29103f2379acb34104ee9b84b2c Mon Sep 17 00:00:00 2001 From: sesh Date: Thu, 25 Jun 2026 00:09:36 +0200 Subject: [PATCH] Update .gitea/workflows/reskin.yaml --- .gitea/workflows/reskin.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/reskin.yaml b/.gitea/workflows/reskin.yaml index acae017..24054c8 100644 --- a/.gitea/workflows/reskin.yaml +++ b/.gitea/workflows/reskin.yaml @@ -39,11 +39,12 @@ jobs: done cp mascot/*.webp upstream/web/static/img/ - if: steps.check.outputs.build == 'true' - working-directory: upstream + name: Build & push reskinned image run: | docker buildx create --use --name b 2>/dev/null || docker buildx use b - docker buildx bake --print # run once to find the app target name - docker buildx bake \ - --set .platform=linux/amd64 \ - --set .tags="$IMAGE:${{ steps.up.outputs.tag }},$IMAGE:latest" \ - --push \ No newline at end of file + docker buildx build upstream \ + --file Dockerfile \ + --platform linux/amd64 \ + --tag "$IMAGE:${{ steps.up.outputs.tag }}" \ + --tag "$IMAGE:latest" \ + --push