ahhhhhhhhhhhh
Some checks failed
CI/CD Docker Compose / Validate (push) Successful in 7s
CI/CD Docker Compose / Deploy-And-Test (push) Failing after 1m15s

This commit is contained in:
Hubert Cornet 2025-01-30 20:15:14 +01:00
parent 67020fd2c0
commit 443b172075

View File

@ -93,16 +93,16 @@ jobs:
if: always()
run: docker compose down
- name: Incrémenter le numéro de version
if: success()
run: |
current_version=$(cat VERSION)
new_version=$(echo "$current_version + 1" | bc)
echo "$new_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"
- name: Incrémenter le numéro de version
if: success()
run: |
current_version=$(cat VERSION)
new_version=$(echo "$current_version + 1" | bc)
echo "$new_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"
- name: Fusionner dans main
if: success()