Skip to content

Commit eb8767b

Browse files
newbe36524claude
andcommitted
fix: use platform-specific packages for Docker builds (linux-x64, linux-arm64)
- Map Docker platform format (linux/amd64, linux/arm64) to Nuke platform format (linux-x64, linux-arm64) - Download platform-specific packages instead of generic package - For multi-arch builds, download both linux-x64 and linux-arm64 packages - Merge both package lib directories for multi-arch builds - Remove redundant copy command since packages are now handled correctly - Include -nort suffix in package name (framework-dependent packages) - Fix bash variable expansion in echo statements (remove single quotes around ${CLEAN_VERSION}) - Add platform input to repository_dispatch trigger for explicit platform control Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 627d4aa commit eb8767b

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/docker-build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,15 @@ on:
5050
version:
5151
description: 'Version to build (passed from version monitor)'
5252
required: false
53+
platform:
54+
description: 'Docker platform (all, linux-amd64, linux-arm64)'
55+
required: false
56+
type: choice
57+
default: all
58+
options:
59+
- all
60+
- linux-amd64
61+
- linux-arm64
5362

5463
permissions:
5564
contents: write # Required for uploading release assets

0 commit comments

Comments
 (0)