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()