From 668ebcd064cfd8c7556875237223827428632f61 Mon Sep 17 00:00:00 2001 From: oleg-ssvlabs Date: Tue, 21 Jul 2026 17:36:35 +0200 Subject: [PATCH] ci: multi-arch dev images + dev- tag prefix Two follow-ups to the manual dev-release job (#123): - Build both linux/amd64 and linux/arm64 for pushed dev images, matching the release path. amd-only was inherited from the PR build-check job (where single-arch is intentional for speed); a deployable dev image has no reason to be restricted. Achieved by dropping image-architectures so docker.yml's default (both arches) applies, exactly like the main workflow. - Default the dev image tag to 'dev-' so it is self-evidently a non-release build, following the prefix convention used by common tooling (sha-, pr-). A custom `tag` input still overrides it. --- .github/workflows/workflow-feature.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/workflow-feature.yml b/.github/workflows/workflow-feature.yml index 7c00767..5473401 100644 --- a/.github/workflows/workflow-feature.yml +++ b/.github/workflows/workflow-feature.yml @@ -46,5 +46,4 @@ jobs: with: with-push: true tag-latest: false - image-tag: ${{ inputs.tag != '' && inputs.tag || github.sha }} - image-architectures: linux/amd64 + image-tag: ${{ inputs.tag != '' && inputs.tag || format('dev-{0}', github.sha) }}