File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 40
40
echo "🔐 Extracting Git credentials from workspace..."
41
41
GIT_USER=$(cat /workspace/git-auth/username)
42
42
GIT_TOKEN=$(cat /workspace/git-auth/token)
43
+ export GIT_NM_USER=${GIT_USER}
44
+ export NM_TOKEN=${GIT_TOKEN}
43
45
44
46
if [ -z "$GIT_USER" ] || [ -z "$GIT_TOKEN" ]; then
45
47
echo "❌ Error: Missing git-auth credentials"
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ SHELL := /usr/bin/env bash
4
4
TARGETOS ?= $(shell go env GOOS)
5
5
TARGETARCH ?= $(shell go env GOARCH)
6
6
PROJECT_NAME ?= llm-d-inference-scheduler
7
- DEV_VERSION ?= 0.0.1
8
- PROD_VERSION ?= 0.0.0
7
+ DEV_VERSION ?= 0.0.2
8
+ PROD_VERSION ?= 0.0.1
9
9
IMAGE_REGISTRY ?= quay.io/llm-d
10
10
IMAGE_TAG_BASE ?= $(IMAGE_REGISTRY ) /$(PROJECT_NAME )
11
11
IMG = $(IMAGE_TAG_BASE ) :$(DEV_VERSION )
You can’t perform that action at this time.
0 commit comments