Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
d6bc680156 | |||
d57e9202bf |
@ -1,8 +1,8 @@
|
|||||||
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
||||||
|
|
||||||
UPSTREAM=
|
UPSTREAM=dev
|
||||||
DEVELOP=dev
|
DEVELOP=pu10
|
||||||
FEATURE=wip/
|
FEATURE=wip10/
|
||||||
RELEASE=
|
RELEASE=
|
||||||
MAIN=
|
MAIN=
|
||||||
TAG_SUFFIX=
|
TAG_SUFFIX=
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
"phpunit/phpunit": "^10",
|
||||||
|
"php": "^8.1"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
18
sbin/retag
Executable file
18
sbin/retag
Executable 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
|
Loading…
Reference in New Issue
Block a user