Update tag exists check
Build and push mlflow container / Create mlflow tag (push) Failing after 4s Details
Build and push mlflow container / Build and push mlflow container (push) Has been skipped Details

This commit is contained in:
LordMathis 2024-01-31 14:14:17 +01:00
parent a4ed47c176
commit 9daa3d2a76
1 changed files with 9 additions and 3 deletions

View File

@ -19,14 +19,20 @@ jobs:
fetch-depth: 0
- name: Get latest git tag
id: tag
run: echo "tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
run: |
tag=$(git describe --tags --abbrev=0)
echo $tag
echo "tag=$tag" >> $GITHUB_OUTPUT
- name: Get mlflow version
id: mlflow
run: echo "mlflow=$(cat requirements.txt | grep mlflow | cut -d'=' -f3)" >> $GITHUB_OUTPUT
run: |
mlflow=$(cat requirements.txt | grep mlflow | cut -d'=' -f2)
echo $mlflow
echo "mlflow=$mlflow" >> $GITHUB_OUTPUT
- name: Create tag if it doesn't exist
id: create
run: |
if git tag -l "${{ steps.tag.outputs.tag }}"; then
if git rev-parse "${{ steps.tag.outputs.tag }}"; then
echo "Tag already exists"
echo "created=false" >> $GITHUB_OUTPUT
else