Compare commits

...

2 Commits
dev ... pu10

Author SHA1 Message Date
d6bc680156 maj projet 2025-02-28 21:08:35 +04:00
d57e9202bf config phpunit 10 2025-02-28 21:05:42 +04:00
3 changed files with 23 additions and 3 deletions

View File

@ -1,8 +1,8 @@
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
UPSTREAM=
DEVELOP=dev
FEATURE=wip/
UPSTREAM=dev
DEVELOP=pu10
FEATURE=wip10/
RELEASE=
MAIN=
TAG_SUFFIX=

View File

@ -15,6 +15,8 @@
}
},
"require": {
"phpunit/phpunit": "^10",
"php": "^8.1"
},
"autoload": {
"psr-4": {

18
sbin/retag Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
source /etc/nulib.sh || exit 1
TAGS=(
8.1
8.2
)
args=(
"refaire les tags en cas de mise à jour de la branche"
)
parse_args "$@"; set -- "${args[@]}"
for tag in "${TAGS[@]}"; do
git tag -f "$tag"
git push -f origin "$tag" || die
done