Skip to content

Commit e451a08

Browse files
authored
ci: Update build.yml workflow
1 parent 1e53149 commit e451a08

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ on:
3131
default: false
3232
required: true
3333
type: boolean
34+
skiparm:
35+
description: 'Skip ARM64 Build'
36+
default: false
37+
required: true
38+
type: boolean
3439
ignoreLowerCoverage:
3540
description: 'Ignore Lower Coverage'
3641
default: false
@@ -245,7 +250,7 @@ jobs:
245250
with:
246251
context: .
247252
file: dev/build/Dockerfile
248-
platforms: linux/amd64,linux/arm64
253+
platforms: ${{ github.event.inputs.skiparm == 'true' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
249254
push: true
250255
tags: ghcr.io/ietf-tools/datatracker:${{ env.PKG_VERSION }}
251256
cache-from: type=gha

0 commit comments

Comments
 (0)