Compare commits

...

1 Commits

Author SHA1 Message Date
Jamison Lahman
13af3a28cb chore(deployment): fix 400 Bad Requests 2025-11-21 12:33:05 -08:00

View File

@@ -136,7 +136,8 @@ jobs:
cache-to: |
type=inline
type=registry,ref=${{ env.RUNS_ON_ECR_CACHE }}:web-cache-amd64,mode=max
outputs: type=image,name=${{ github.event_name == 'workflow_dispatch' && env.RUNS_ON_ECR_CACHE || env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ github.event_name == 'workflow_dispatch' && format('{0}:web-temp-amd64', env.RUNS_ON_ECR_CACHE) || format('{0}:web-temp-amd64', env.REGISTRY_IMAGE) }}
push: true
no-cache: ${{ vars.DOCKER_NO_CACHE == 'true' }}
build-web-arm64:
@@ -193,7 +194,8 @@ jobs:
cache-to: |
type=inline
type=registry,ref=${{ env.RUNS_ON_ECR_CACHE }}:web-cache-arm64,mode=max
outputs: type=image,name=${{ github.event_name == 'workflow_dispatch' && env.RUNS_ON_ECR_CACHE || env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ github.event_name == 'workflow_dispatch' && format('{0}:web-temp-arm64', env.RUNS_ON_ECR_CACHE) || format('{0}:web-temp-arm64', env.REGISTRY_IMAGE) }}
push: true
no-cache: ${{ vars.DOCKER_NO_CACHE == 'true' }}
merge-web:
@@ -307,7 +309,8 @@ jobs:
cache-to: |
type=inline
type=registry,ref=${{ env.RUNS_ON_ECR_CACHE }}:cloudweb-cache-amd64,mode=max
outputs: type=image,name=${{ github.event_name == 'workflow_dispatch' && env.RUNS_ON_ECR_CACHE || env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ github.event_name == 'workflow_dispatch' && format('{0}:web-cloud-temp-amd64', env.RUNS_ON_ECR_CACHE) || format('{0}:web-cloud-temp-amd64', env.REGISTRY_IMAGE) }}
push: true
no-cache: ${{ vars.DOCKER_NO_CACHE == 'true' }}
build-web-cloud-arm64:
@@ -372,7 +375,8 @@ jobs:
cache-to: |
type=inline
type=registry,ref=${{ env.RUNS_ON_ECR_CACHE }}:cloudweb-cache-arm64,mode=max
outputs: type=image,name=${{ github.event_name == 'workflow_dispatch' && env.RUNS_ON_ECR_CACHE || env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ github.event_name == 'workflow_dispatch' && format('{0}:web-cloud-temp-arm64', env.RUNS_ON_ECR_CACHE) || format('{0}:web-cloud-temp-arm64', env.REGISTRY_IMAGE) }}
push: true
no-cache: ${{ vars.DOCKER_NO_CACHE == 'true' }}
merge-web-cloud:
@@ -474,7 +478,8 @@ jobs:
cache-to: |
type=inline
type=registry,ref=${{ env.RUNS_ON_ECR_CACHE }}:backend-cache-amd64,mode=max
outputs: type=image,name=${{ github.event_name == 'workflow_dispatch' && env.RUNS_ON_ECR_CACHE || env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ github.event_name == 'workflow_dispatch' && format('{0}:backend-temp-amd64', env.RUNS_ON_ECR_CACHE) || format('{0}:backend-temp-amd64', env.REGISTRY_IMAGE) }}
push: true
no-cache: ${{ vars.DOCKER_NO_CACHE == 'true' }}
build-backend-arm64:
@@ -530,7 +535,8 @@ jobs:
cache-to: |
type=inline
type=registry,ref=${{ env.RUNS_ON_ECR_CACHE }}:backend-cache-arm64,mode=max
outputs: type=image,name=${{ github.event_name == 'workflow_dispatch' && env.RUNS_ON_ECR_CACHE || env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ github.event_name == 'workflow_dispatch' && format('{0}:backend-temp-arm64', env.RUNS_ON_ECR_CACHE) || format('{0}:backend-temp-arm64', env.REGISTRY_IMAGE) }}
push: true
no-cache: ${{ vars.DOCKER_NO_CACHE == 'true' }}
merge-backend:
@@ -640,10 +646,9 @@ jobs:
cache-to: |
type=inline
type=registry,ref=${{ env.RUNS_ON_ECR_CACHE }}:model-server-cache-amd64,mode=max
outputs: type=image,name=${{ github.event_name == 'workflow_dispatch' && env.RUNS_ON_ECR_CACHE || env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ github.event_name == 'workflow_dispatch' && format('{0}:model-server-temp-amd64', env.RUNS_ON_ECR_CACHE) || format('{0}:model-server-temp-amd64', env.REGISTRY_IMAGE) }}
push: true
no-cache: ${{ env.EDGE_TAG != 'true' && vars.MODEL_SERVER_NO_CACHE == 'true' }}
provenance: false
sbom: false
build-model-server-arm64:
needs: determine-builds
@@ -703,10 +708,9 @@ jobs:
cache-to: |
type=inline
type=registry,ref=${{ env.RUNS_ON_ECR_CACHE }}:model-server-cache-arm64,mode=max
outputs: type=image,name=${{ github.event_name == 'workflow_dispatch' && env.RUNS_ON_ECR_CACHE || env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ github.event_name == 'workflow_dispatch' && format('{0}:model-server-temp-arm64', env.RUNS_ON_ECR_CACHE) || format('{0}:model-server-temp-arm64', env.REGISTRY_IMAGE) }}
push: true
no-cache: ${{ env.EDGE_TAG != 'true' && vars.MODEL_SERVER_NO_CACHE == 'true' }}
provenance: false
sbom: false
merge-model-server:
needs: