From d0421fdb640a65983dd6fca9bf32ca2829cba6a2 Mon Sep 17 00:00:00 2001 From: hcornet Date: Fri, 31 Jan 2025 19:13:45 +0100 Subject: [PATCH] test - 002 --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0ebd3ee..1f2ea13 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -99,11 +99,11 @@ jobs: run: | current_version=$(cat VERSION) new_version=$(echo "$current_version + 1" | bc) - echo "$new_version" > VERSION + echo "$current_version" > VERSION git config user.name 'Gitea Actions' git config user.email 'actions@gitea.io' git add VERSION - git commit -m "Incrémentation automatique de la version à $new_version" + git commit -m "Incrémentation automatique de la version à $current_version" - name: Fusionner dans main if: success()