We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60279f6 commit c580852Copy full SHA for c580852
.github/workflows/container.yml
@@ -85,6 +85,6 @@ jobs:
85
tags: ${{ steps.meta.outputs.tags }}
86
labels: ${{ steps.meta.outputs.labels }}
87
file: docker/Dockerfile.${{matrix.image}}
88
- platforms: ${{ github.event_name == 'pull_request' && 'linux/amd64' || 'linux/amd64,linux/arm64' }} # only build for amd64 on PRs to speed up CI job
+ platforms: ${{ startsWith(github.ref, 'refs/tags/') && 'linux/amd64,linux/arm64' || 'linux/amd64' }} # only build for amd64 on PRs to speed up CI job
89
cache-from: type=gha
90
cache-to: type=gha,mode=max
0 commit comments