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