Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
d8feb93c
Unverified
Commit
d8feb93c
authored
Feb 10, 2026
by
Harrison Saturley-Hall
Committed by
GitHub
Feb 10, 2026
Browse files
fix: sanitize docker tags on main to arm64/amd64 removing 'linux/...' (#6108)
parent
ac020629
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
.github/workflows/build-test-distribute-flavor.yml
.github/workflows/build-test-distribute-flavor.yml
+1
-1
No files found.
.github/workflows/build-test-distribute-flavor.yml
View file @
d8feb93c
...
@@ -125,7 +125,7 @@ jobs:
...
@@ -125,7 +125,7 @@ jobs:
RESULT=""
RESULT=""
while IFS= read -r tag; do
while IFS= read -r tag; do
if [ -n "$tag" ]; then
if [ -n "$tag" ]; then
RESULT+="${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_DEFAULT_REGION }}.amazonaws.com/ai-dynamo/dynamo:${tag}-${
PLATFORM
}"$'\n'
RESULT+="${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_DEFAULT_REGION }}.amazonaws.com/ai-dynamo/dynamo:${tag}-${
{ inputs.platform }
}"$'\n'
fi
fi
done <<< "$EXTRA_TAGS"
done <<< "$EXTRA_TAGS"
echo "tags<<EOF" >> $GITHUB_OUTPUT
echo "tags<<EOF" >> $GITHUB_OUTPUT
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment