From 610e7588e5e91ebfda39427f353dc2d8278dafd5 Mon Sep 17 00:00:00 2001 From: Petr Polezhaev Date: Sat, 7 Feb 2026 19:59:54 +0300 Subject: [PATCH] Fix wrong syntax for build-args --- .gitea/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 609e1f2..309dce5 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -35,6 +35,6 @@ jobs: push: ${{github.event_name != 'pull_request'}} tags: ${{steps.meta.outputs.tags}} labels: ${{steps.meta.outputs.labels}} - build-args: - - VERSION=v5.7.1 - - REPO_MIRROR=${{vars.REPO_MIRROR}} + build-args: | + VERSION=v5.7.1 + REPO_MIRROR=${{vars.REPO_MIRROR}}