Skip to content

Commit 7256b55

Browse files
fix: do not give env variables from cloudbuild
1 parent df69428 commit 7256b55

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ ci-track-experiment:
176176
ci-variables:
177177
@chmod +x ./bin/set_ci_var.sh
178178
@echo {} > cloudbuild/IaC/vars.json
179-
@cd bin && ./set_ci_var.sh $$folder_id $$billing_account $$birth_project_number
179+
@cd bin && ./set_ci_var.sh $$FOLDER_ID $$BILLING_ACCOUNT $$PROJECT_NUMBER
180180

181181
#################
182182
# DEVTOOLS #

cloudbuild/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ steps:
44
env:
55
- 'PROJECT_NUMBER=$PROJECT_NUMBER'
66
- 'BILLING_ACCOUNT=${_BILLING_ACCOUNT}'
7-
- 'TEST=${_FOLDER_ID}'
7+
- 'FOLDER_ID=${_FOLDER_ID}'
88
entrypoint: 'bash'
99
args:
1010
- -c
1111
- |
12-
birth_project_number=$PROJECT_NUMBER make ci-one-click-mlflow
12+
make ci-one-click-mlflow

0 commit comments

Comments
 (0)