Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/actions/setup-dynamo-operator/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,9 @@ runs:
Smoke:
componentType: worker
replicas: 0
extraPodSpec:
mainContainer:
image: registry.example/runtime:1.1.0
EOF
}

Expand All @@ -569,6 +572,11 @@ runs:
- name: Smoke
type: worker
replicas: 0
podTemplate:
spec:
containers:
- name: main
image: registry.example/runtime:1.1.0
EOF
}

Expand Down
40 changes: 23 additions & 17 deletions .github/workflows/post-merge-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,8 @@ jobs:
needs: [vllm-copy-to-acr]
if: github.event_name != 'workflow_dispatch'
runs-on: prod-default-v2
outputs:
image_tag: ${{ format('{0}-ci-{1}-vllm-placeholder', needs.vllm-copy-to-acr.outputs.runtime_version, github.sha) }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -705,9 +707,9 @@ jobs:
azure_acr_user: ${{ secrets.AZURE_ACR_USER }}
azure_acr_password: ${{ secrets.AZURE_ACR_PASSWORD }}
extra_tags: |
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-vllm-placeholder
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ format('{0}-ci-{1}-vllm-placeholder', needs.vllm-copy-to-acr.outputs.runtime_version, github.sha) }}
extra_build_args: |
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-vllm-runtime
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.vllm-copy-to-acr.outputs.image_tag }}

vllm-dev-copy-to-acr:
name: vllm-dev # This name overlaps with other vllm jobs to group them in the UI
Expand Down Expand Up @@ -735,6 +737,8 @@ jobs:
needs: [sglang-copy-to-acr]
if: github.event_name != 'workflow_dispatch'
runs-on: prod-default-v2
outputs:
image_tag: ${{ format('{0}-ci-{1}-sglang-placeholder', needs.sglang-copy-to-acr.outputs.runtime_version, github.sha) }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -753,9 +757,9 @@ jobs:
azure_acr_user: ${{ secrets.AZURE_ACR_USER }}
azure_acr_password: ${{ secrets.AZURE_ACR_PASSWORD }}
extra_tags: |
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-sglang-placeholder
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ format('{0}-ci-{1}-sglang-placeholder', needs.sglang-copy-to-acr.outputs.runtime_version, github.sha) }}
extra_build_args: |
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-sglang-runtime
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.sglang-copy-to-acr.outputs.image_tag }}

sglang-dev-copy-to-acr:
name: sglang-dev # This name overlaps with other sglang jobs to group them in the UI
Expand Down Expand Up @@ -786,6 +790,8 @@ jobs:
needs: [trtllm-copy-to-acr]
if: github.event_name != 'workflow_dispatch'
runs-on: prod-default-v2
outputs:
image_tag: ${{ format('{0}-ci-{1}-trtllm-placeholder', needs.trtllm-copy-to-acr.outputs.runtime_version, github.sha) }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -804,9 +810,9 @@ jobs:
azure_acr_user: ${{ secrets.AZURE_ACR_USER }}
azure_acr_password: ${{ secrets.AZURE_ACR_PASSWORD }}
extra_tags: |
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-trtllm-placeholder
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ format('{0}-ci-{1}-trtllm-placeholder', needs.trtllm-copy-to-acr.outputs.runtime_version, github.sha) }}
extra_build_args: |
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-trtllm-runtime
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.trtllm-copy-to-acr.outputs.image_tag }}

trtllm-dev-copy-to-acr:
name: trtllm-dev # This name overlaps with other trtllm jobs to group them in the UI
Expand Down Expand Up @@ -869,7 +875,7 @@ jobs:
with:
framework: vllm
profiles: '["agg", "agg_router", "disagg", "disagg_router"]'
image_suffix: vllm-runtime
image_tag: ${{ needs.vllm-copy-to-acr.outputs.image_tag }}
namespace: ${{ needs.deploy-operator.outputs.namespace }}
vcluster_name: ${{ needs.deploy-operator.outputs.vcluster_name }}
operator_tag: ${{ needs.deploy-operator.outputs.operator_tag }}
Expand All @@ -881,7 +887,7 @@ jobs:
with:
framework: sglang
profiles: '["agg", "agg_router"]'
image_suffix: sglang-runtime
image_tag: ${{ needs.sglang-copy-to-acr.outputs.image_tag }}
namespace: ${{ needs.deploy-operator.outputs.namespace }}
vcluster_name: ${{ needs.deploy-operator.outputs.vcluster_name }}
operator_tag: ${{ needs.deploy-operator.outputs.operator_tag }}
Expand All @@ -893,7 +899,7 @@ jobs:
with:
framework: trtllm
profiles: '["agg", "agg_router"]'
image_suffix: trtllm-runtime
image_tag: ${{ needs.trtllm-copy-to-acr.outputs.image_tag }}
namespace: ${{ needs.deploy-operator.outputs.namespace }}
vcluster_name: ${{ needs.deploy-operator.outputs.vcluster_name }}
operator_tag: ${{ needs.deploy-operator.outputs.operator_tag }}
Expand Down Expand Up @@ -1174,13 +1180,13 @@ jobs:
operator_tag: ${{ needs.deploy-operator-checkpoint-vllm.outputs.operator_tag }}
framework: checkpoint
profile: dgd_restore
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-vllm-placeholder
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.snapshot-placeholder-vllm.outputs.image_tag }}
test_name: checkpoint_dgd_restore_vllm
test_file: tests/deploy/test_dynamocheckpoint.py
extra_pytest_args: >-
-m dynamocheckpoint
--checkpoint-backend=vllm
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-dynamo-frontend
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.frontend-copy-to-acr.outputs.image_tag }}

deploy-test-checkpoint-sglang:
name: SGLang DynamoCheckpoint Deploy Test
Expand Down Expand Up @@ -1238,13 +1244,13 @@ jobs:
operator_tag: ${{ needs.deploy-operator-checkpoint-sglang.outputs.operator_tag }}
framework: checkpoint
profile: dgd_restore
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-sglang-placeholder
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.snapshot-placeholder-sglang.outputs.image_tag }}
test_name: checkpoint_dgd_restore_sglang
test_file: tests/deploy/test_dynamocheckpoint.py
extra_pytest_args: >-
-m dynamocheckpoint
--checkpoint-backend=sglang
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-dynamo-frontend
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.frontend-copy-to-acr.outputs.image_tag }}

deploy-test-checkpoint-trtllm:
name: TRTLLM DynamoCheckpoint Deploy Test
Expand Down Expand Up @@ -1302,13 +1308,13 @@ jobs:
operator_tag: ${{ needs.deploy-operator-checkpoint-trtllm.outputs.operator_tag }}
framework: checkpoint
profile: dgd_restore
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-trtllm-placeholder
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.snapshot-placeholder-trtllm.outputs.image_tag }}
test_name: checkpoint_dgd_restore_trtllm
test_file: tests/deploy/test_dynamocheckpoint.py
extra_pytest_args: >-
-m dynamocheckpoint
--checkpoint-backend=trtllm
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-dynamo-frontend
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.frontend-copy-to-acr.outputs.image_tag }}

deploy-cleanup:
if: always()
Expand Down Expand Up @@ -1422,8 +1428,8 @@ jobs:
test_name: gaie
extra_pytest_args: >-
-m framework_with_gaie
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-dynamo-frontend
--image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-vllm-runtime
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.frontend-copy-to-acr.outputs.image_tag }}
--image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.vllm-copy-to-acr.outputs.image_tag }}

deploy-status-check:
runs-on: ubuntu-latest
Expand Down
36 changes: 21 additions & 15 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -992,6 +992,8 @@ jobs:
(needs.changed-files.outputs.snapshot == 'true' ||
needs.changed-files.outputs.snapshot_vllm == 'true')
runs-on: prod-default-v2
outputs:
image_tag: ${{ format('{0}-ci-{1}-vllm-placeholder', needs.vllm-copy-to-acr.outputs.runtime_version, github.sha) }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -1010,9 +1012,9 @@ jobs:
azure_acr_user: ${{ secrets.AZURE_ACR_USER }}
azure_acr_password: ${{ secrets.AZURE_ACR_PASSWORD }}
extra_tags: |
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-vllm-placeholder
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ format('{0}-ci-{1}-vllm-placeholder', needs.vllm-copy-to-acr.outputs.runtime_version, github.sha) }}
extra_build_args: |
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-vllm-runtime
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.vllm-copy-to-acr.outputs.image_tag }}

sglang-copy-to-acr:
name: sglang-runtime # This name overlaps with other sglang jobs to group them in the UI
Expand Down Expand Up @@ -1042,6 +1044,8 @@ jobs:
(needs.changed-files.outputs.snapshot == 'true' ||
needs.changed-files.outputs.snapshot_sglang == 'true')
runs-on: prod-default-v2
outputs:
image_tag: ${{ format('{0}-ci-{1}-sglang-placeholder', needs.sglang-copy-to-acr.outputs.runtime_version, github.sha) }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -1060,9 +1064,9 @@ jobs:
azure_acr_user: ${{ secrets.AZURE_ACR_USER }}
azure_acr_password: ${{ secrets.AZURE_ACR_PASSWORD }}
extra_tags: |
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-sglang-placeholder
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ format('{0}-ci-{1}-sglang-placeholder', needs.sglang-copy-to-acr.outputs.runtime_version, github.sha) }}
extra_build_args: |
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-sglang-runtime
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.sglang-copy-to-acr.outputs.image_tag }}

trtllm-copy-to-acr:
name: trtllm-runtime # This name overlaps with other trtllm jobs to group them in the UI
Expand Down Expand Up @@ -1092,6 +1096,8 @@ jobs:
(needs.changed-files.outputs.snapshot == 'true' ||
needs.changed-files.outputs.snapshot_trtllm == 'true')
runs-on: prod-default-v2
outputs:
image_tag: ${{ format('{0}-ci-{1}-trtllm-placeholder', needs.trtllm-copy-to-acr.outputs.runtime_version, github.sha) }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -1110,9 +1116,9 @@ jobs:
azure_acr_user: ${{ secrets.AZURE_ACR_USER }}
azure_acr_password: ${{ secrets.AZURE_ACR_PASSWORD }}
extra_tags: |
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-trtllm-placeholder
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ format('{0}-ci-{1}-trtllm-placeholder', needs.trtllm-copy-to-acr.outputs.runtime_version, github.sha) }}
extra_build_args: |
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-trtllm-runtime
BASE_IMAGE=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.trtllm-copy-to-acr.outputs.image_tag }}

# ============================================================================
# DEPLOY TEST PIPELINES
Expand Down Expand Up @@ -1165,7 +1171,7 @@ jobs:
with:
framework: vllm
profiles: '["agg", "agg_router", "disagg", "disagg_router"]'
image_suffix: vllm-runtime
image_tag: ${{ needs.vllm-copy-to-acr.outputs.image_tag }}
namespace: ${{ needs.deploy-operator.outputs.namespace }}
vcluster_name: ${{ needs.deploy-operator.outputs.vcluster_name }}
operator_tag: ${{ needs.deploy-operator.outputs.operator_tag }}
Expand All @@ -1183,7 +1189,7 @@ jobs:
with:
framework: sglang
profiles: '["agg", "agg_router"]'
image_suffix: sglang-runtime
image_tag: ${{ needs.sglang-copy-to-acr.outputs.image_tag }}
namespace: ${{ needs.deploy-operator.outputs.namespace }}
vcluster_name: ${{ needs.deploy-operator.outputs.vcluster_name }}
operator_tag: ${{ needs.deploy-operator.outputs.operator_tag }}
Expand All @@ -1201,7 +1207,7 @@ jobs:
with:
framework: trtllm
profiles: '["agg", "agg_router"]'
image_suffix: trtllm-runtime
image_tag: ${{ needs.trtllm-copy-to-acr.outputs.image_tag }}
namespace: ${{ needs.deploy-operator.outputs.namespace }}
vcluster_name: ${{ needs.deploy-operator.outputs.vcluster_name }}
operator_tag: ${{ needs.deploy-operator.outputs.operator_tag }}
Expand Down Expand Up @@ -1502,13 +1508,13 @@ jobs:
operator_tag: ${{ needs.deploy-operator-checkpoint-vllm.outputs.operator_tag }}
framework: checkpoint
profile: dgd_restore
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-vllm-placeholder
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.snapshot-placeholder-vllm.outputs.image_tag }}
test_name: checkpoint_dgd_restore_vllm
test_file: tests/deploy/test_dynamocheckpoint.py
extra_pytest_args: >-
-m dynamocheckpoint
--checkpoint-backend=vllm
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-dynamo-frontend
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.frontend-copy-to-acr.outputs.image_tag }}

deploy-test-checkpoint-sglang:
name: SGLang DynamoCheckpoint Deploy Test
Expand Down Expand Up @@ -1568,13 +1574,13 @@ jobs:
operator_tag: ${{ needs.deploy-operator-checkpoint-sglang.outputs.operator_tag }}
framework: checkpoint
profile: dgd_restore
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-sglang-placeholder
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.snapshot-placeholder-sglang.outputs.image_tag }}
test_name: checkpoint_dgd_restore_sglang
test_file: tests/deploy/test_dynamocheckpoint.py
extra_pytest_args: >-
-m dynamocheckpoint
--checkpoint-backend=sglang
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-dynamo-frontend
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.frontend-copy-to-acr.outputs.image_tag }}

deploy-test-checkpoint-trtllm:
name: TRTLLM DynamoCheckpoint Deploy Test
Expand Down Expand Up @@ -1634,13 +1640,13 @@ jobs:
operator_tag: ${{ needs.deploy-operator-checkpoint-trtllm.outputs.operator_tag }}
framework: checkpoint
profile: dgd_restore
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-trtllm-placeholder
image: ${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.snapshot-placeholder-trtllm.outputs.image_tag }}
test_name: checkpoint_dgd_restore_trtllm
test_file: tests/deploy/test_dynamocheckpoint.py
extra_pytest_args: >-
-m dynamocheckpoint
--checkpoint-backend=trtllm
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-dynamo-frontend
--frontend-image=${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ needs.frontend-copy-to-acr.outputs.image_tag }}

deploy-cleanup:
if: always()
Expand Down
30 changes: 27 additions & 3 deletions .github/workflows/shared-copy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ on:
required: false
type: string
default: ''
outputs:
runtime_version:
description: 'Dynamo runtime compatibility version from Cargo.toml'
value: ${{ jobs.copy-to-acr.outputs.runtime_version }}
image_tag:
description: 'Image tag published to ACR'
value: ${{ jobs.copy-to-acr.outputs.image_tag }}
secrets:
AWS_DEFAULT_REGION:
required: true
Expand All @@ -38,6 +45,11 @@ on:

jobs:
copy-to-acr:
permissions:
contents: read
outputs:
runtime_version: ${{ steps.calculate-target-tag.outputs.runtime_version }}
image_tag: ${{ steps.calculate-target-tag.outputs.image_tag }}
strategy:
fail-fast: false
matrix:
Expand All @@ -56,25 +68,37 @@ jobs:
CUDA_VERSION="${{ matrix.cuda_version }}"
TARGET_TAG_PLAIN="${{ inputs.target_tag_plain }}"

IMAGE_TAG=${{ github.sha }}-${TARGET_TAG_PLAIN}
SOURCE_TAG=${{ github.sha }}-${TARGET_TAG_PLAIN}
if [ -n "${CUDA_VERSION}" ]; then
CUDA_MAJOR=${CUDA_VERSION%%.*}
# cuda13 is the implicit default — the primary ECR tag carries
# no cuda suffix. Non-13 majors (e.g. cuda12) stay explicit.
# Keep in sync with shared-build-image.yml and shared-test.yml.
if [ "${CUDA_MAJOR}" != "13" ]; then
IMAGE_TAG="${IMAGE_TAG}-cuda${CUDA_MAJOR}"
SOURCE_TAG="${SOURCE_TAG}-cuda${CUDA_MAJOR}"
fi
fi

DYNAMO_VERSION=$(sed -n \
'/^\[workspace.package\]$/,/^\[/s/^version = "\([^"]*\)"/\1/p' \
Cargo.toml)
DYNAMO_VERSION=${DYNAMO_VERSION%%[-+]*}
if [[ ! "${DYNAMO_VERSION}" =~ ^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)$ ]]; then
echo "::error::Invalid Dynamo workspace version: ${DYNAMO_VERSION}"
exit 1
fi
IMAGE_TAG="${DYNAMO_VERSION}-ci-${SOURCE_TAG}"

echo "source_tag=${SOURCE_TAG}" >> $GITHUB_OUTPUT
echo "runtime_version=${DYNAMO_VERSION}" >> $GITHUB_OUTPUT
echo "image_tag=${IMAGE_TAG}" >> $GITHUB_OUTPUT
- name: Copy image to target registry
timeout-minutes: ${{ inputs.copy_timeout_minutes }}
uses: ./.github/actions/skopeo-copy
with:
source_registry: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_DEFAULT_REGION }}.amazonaws.com
source_image: ai-dynamo/dynamo
source_tag: ${{ steps.calculate-target-tag.outputs.image_tag }}
source_tag: ${{ steps.calculate-target-tag.outputs.source_tag }}
target_registry: ${{ secrets.AZURE_ACR_HOSTNAME }}
target_image: ai-dynamo/dynamo
target_tag: ${{ steps.calculate-target-tag.outputs.image_tag }}
Expand Down
Loading
Loading