From 333fd642be301e1a192aa98f6f382b575142cb76 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Thu, 6 Mar 2025 13:55:28 +0100 Subject: [PATCH] feat(ci): add DEPOT_TOKEN to release workflow env Add the DEPOT_TOKEN secret to the environment variables section of the release-deployment workflow to enable proper authentication with the Depot service for Docker builds. Signed-off-by: rjshrjndrn --- .github/workflows/release-deployment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-deployment.yaml b/.github/workflows/release-deployment.yaml index 3f30f8c83..5bf617502 100644 --- a/.github/workflows/release-deployment.yaml +++ b/.github/workflows/release-deployment.yaml @@ -14,6 +14,7 @@ on: env: IMAGE_REGISTRY_URL: ${{ secrets.OSS_REGISTRY_URL }} DEPOT_PROJECT_ID: ${{ secrets.DEPOT_PROJECT_ID }} + DEPOT_TOKEN: ${{ secrets.DEPOT_TOKEN }} DOCKER_REPO_OSS: ${{ secrets.OSS_REGISTRY_URL }} jobs: