Skip to content

Commit 27be90c

Browse files
committed
add env var setup
1 parent 6484daf commit 27be90c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/build_and_deploy_api.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
test:
1818
runs-on: ubuntu-latest
1919
steps:
20+
- name: Set up environment variables
21+
run: echo "MLFLOW_TRACKING_URI=${{ secrets.MLFLOW_TRACKING_URI }}" >> $GITHUB_ENV
22+
2023
- uses: actions/checkout@v3
2124

2225
- name: Install uv

.github/workflows/load_data.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313
steps:
14+
- name: Set up environment variables
15+
run: echo "MLFLOW_TRACKING_URI=${{ secrets.MLFLOW_TRACKING_URI }}" >> $GITHUB_ENV
16+
1417
- uses: actions/checkout@v3
1518

1619
- name: Install uv

0 commit comments

Comments
 (0)