Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:

release:
runs-on: ubuntu-latest
strategy:
matrix:
docker-version: [28, 29]
steps:

- name: Checkout
Expand All @@ -33,6 +36,8 @@ jobs:
type=semver,pattern={{major}}
type=sha
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
flavor: |
suffix=${{ matrix.docker-version != '29' && format('-docker-{0}', matrix.docker-version) || '' }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -55,3 +60,5 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
"DOCKER_IMAGE_TAG=${{ matrix.docker-version }}-cli"
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM docker:29.1.3-cli-alpine3.23
ARG DOCKER_IMAGE_TAG=29-cli

FROM docker:${DOCKER_IMAGE_TAG}

LABEL maintainer="kitconcept GmbH <info@kitconcept.com>" \
org.label-schema.name="docker-stack-deploy" \
Expand Down