fix(ci): speed up main Docker builds by using amd64 except tags (#237)

This commit is contained in:
Will Sarg 2026-02-15 18:44:53 -05:00 committed by GitHub
parent 28ec4ae826
commit b367d41b63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -68,7 +68,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64
platforms: ${{ startsWith(github.ref, 'refs/tags/') && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
- name: Build smoke image (PR only)
if: github.event_name == 'pull_request'