Unverified Commit d8feb93c authored by Harrison Saturley-Hall's avatar Harrison Saturley-Hall Committed by GitHub
Browse files

fix: sanitize docker tags on main to arm64/amd64 removing 'linux/...' (#6108)

parent ac020629
...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment