We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 416fecd commit f3d71f2Copy full SHA for f3d71f2
.github/workflows/build.yml
@@ -211,8 +211,9 @@ jobs:
211
context: .
212
cache-from: type=gha,scope=prod
213
cache-to: type=gha,mode=max,scope=prod
214
- platforms: linux/amd64,linux/arm64
215
- push: true
+ platforms: ${{ github.event.pull_request.head.repo.full_name == github.repository && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
+ push: ${{ github.event.pull_request.head.repo.full_name == github.repository && 'true' || 'false' }}
216
+ load: ${{ github.event.pull_request.head.repo.full_name == github.repository && 'false' || 'true' }}
217
tags: ghcr.io/getsentry/spotlight:${{ github.sha }}
218
219
- name: Test Docker Image
0 commit comments