chore: migrate from Drone CI to GitHub Actions#147
Merged
Conversation
Replace .drone.star with a GitHub Actions workflow that builds multi-arch Docker images (linux/amd64 + linux/arm64/v8) using docker/build-push-action with buildx. All actions are pinned to their release SHAs. Consolidate the per-arch Dockerfiles (Dockerfile.amd64 / Dockerfile.arm64v8) into a single Dockerfile.multiarch per version, using BuildKit TARGETARCH/TARGETVARIANT to select the correct base image. Chrome installation is guarded behind an x86_64 check since no arm64 .deb is available. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
TARGETVARIANT is not set by buildx for linux/arm64/v8 on GitHub-hosted
runners, so \${TARGETARCH}\${TARGETVARIANT} expanded to 'arm64' instead
of 'arm64v8', causing the build to fail with 'image not found'.
Replace the single parametric FROM with two named base stages and select
between them using TARGETARCH (which is reliably set to 'amd64' or
'arm64').
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
Remove version directories and workflow matrix entries for EOL Node.js versions 14, 16, and 18. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
This was referenced Jun 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.drone.starwith a GitHub Actions workflow (.github/workflows/docker.yml) using a 7-version matrix (latest,24,22,20,18,16,14)linux/amd64+linux/arm64/v8) viadocker/build-push-actionwith buildx + QEMU — no separate manifest step neededactions/checkout,docker/setup-qemu-action,docker/setup-buildx-action,docker/login-action,docker/build-push-action)Dockerfile.amd64/Dockerfile.arm64v8) into a singleDockerfile.multiarchper version using BuildKitTARGETARCH/TARGETVARIANTto select the correct base imagex86_64check (no arm64.debavailable from Google)amd64,24-amd64, etc.) are dropped — buildx produces the multi-arch manifest directlyTest plan
DOCKER_USERNAMEandDOCKER_PASSWORDsecrets to repo settings before merginglatest,24,22,20,18,16,14)linux/amd64andlinux/arm64/v8platforms in the manifest🤖 Generated with Claude Code