diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index f5a20a7..fa193a8 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -20,20 +20,20 @@ jobs: # Check if the image exists. # EXISTS = 0 if the image was found else 1. - EXISTS=$(docker manifest inspect $VERSIONED_TAG > /dev/null 2>&1; echo $?) + EXISTS=$(docker manifest inspect $VERSIONED_IMAGE_TAG > /dev/null 2>&1; echo $?) # If the image does not exist, then build it. if [[ $EXISTS -eq 1 ]]; then - echo "Building image $VERSIONED_TAG" + echo "Building image $VERSIONED_IMAGE_TAG" docker build -t $VERSIONED_IMAGE_TAG -t $LATEST_IMAGE_TAG . - echo "Building image $VERSIONED_TAG" + echo "Building image $VERSIONED_IMAGE_TAG" docker push $VERSIONED_IMAGE_TAG echo "Building image $LATEST_IMAGE_TAG" docker push $LATEST_IMAGE_TAG # Else notify the user that the image tag already exists and exit with status code 1. else - echo "Image $VERSIONED_TAG already exists, you should probably increment the version." + echo "Image $VERSIONED_IMAGE_TAG already exists, you should probably increment the version." exit 1 fi