debug
Some checks failed
Build and Push Docker Image / build (push) Failing after 27s

This commit is contained in:
2024-07-21 06:39:07 +02:00
parent 4b9897ae12
commit 553a488c38

View File

@@ -28,12 +28,9 @@ jobs:
echo "Current version: $version"
# Extraire les parties majeure, mineure et patch
IFS='.' read -r -a parts <<-EOF
$version
EOF
major=${parts[0]}
minor=${parts[1]}
patch=${parts[2]}
major=$(echo $version | cut -d. -f1)
minor=$(echo $version | cut -d. -f2)
patch=$(echo $version | cut -d. -f3)
# Incrémenter la version patch
patch=$((patch + 1))