Skip to content

Commit

Permalink
fix: injetando segredo na pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
heltonricardo committed Dec 21, 2023
1 parent 6e7cb3f commit a7bac4c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ jobs:
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Set Environment Variables
run: |
echo "MLFLOW_TRACKING_URI=${{ secrets.MLFLOW_TRACKING_URI }}" >> $GITHUB_ENV
echo "MLFLOW_TRACKING_MODEL=${{ secrets.MLFLOW_TRACKING_MODEL }}" >> $GITHUB_ENV
- name: Train Model
run: python src/train.py

Expand Down

0 comments on commit a7bac4c

Please sign in to comment.