Update .gitea/workflows/reskin.yaml

This commit is contained in:
2026-06-25 00:09:36 +02:00
parent 62c8a5959b
commit 78fb6b5148
+7 -6
View File
@@ -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 <target> \
--set <target>.platform=linux/amd64 \
--set <target>.tags="$IMAGE:${{ steps.up.outputs.tag }},$IMAGE:latest" \
--push
docker buildx build upstream \
--file Dockerfile \
--platform linux/amd64 \
--tag "$IMAGE:${{ steps.up.outputs.tag }}" \
--tag "$IMAGE:latest" \
--push