1 parent 1e53149 commit e451a08Copy full SHA for e451a08
1 file changed
.github/workflows/build.yml
@@ -31,6 +31,11 @@ on:
31
default: false
32
required: true
33
type: boolean
34
+ skiparm:
35
+ description: 'Skip ARM64 Build'
36
+ default: false
37
+ required: true
38
+ type: boolean
39
ignoreLowerCoverage:
40
description: 'Ignore Lower Coverage'
41
@@ -245,7 +250,7 @@ jobs:
245
250
with:
246
251
context: .
247
252
file: dev/build/Dockerfile
248
- platforms: linux/amd64,linux/arm64
253
+ platforms: ${{ github.event.inputs.skiparm == 'true' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
249
254
push: true
255
tags: ghcr.io/ietf-tools/datatracker:${{ env.PKG_VERSION }}
256
cache-from: type=gha
0 commit comments