Skip to content

Commit

Permalink
Merge pull request #50 from ninerealmlabs/ci-tag
Browse files Browse the repository at this point in the history
fix: mlflow version detection for CI tagging
  • Loading branch information
ahgraber authored Oct 24, 2023
2 parents 662678d + 75da086 commit dbb7d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/1-runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
shell: bash
run: |
# extract mlflow version from requirements.txt
VERSION="$(grep 'mlflow==' docker/requirements.txt | xargs | sed s'|mlflow==||g' | sed s'|[[:space:]]||g')"
VERSION="$(grep 'mlflow' docker/requirements.txt | xargs | sed s'|^.*==||g' | sed s'|[[:space:]]||g')"
# ------------------------------------------------------------------
echo "VERSION: ${VERSION}"
# ------------------------------------------------------------------
Expand Down

0 comments on commit dbb7d5f

Please sign in to comment.