forgejo-ci: fix double v in repo
All checks were successful
/ lint (pull_request) Successful in 39s
/ build-x86_64 (pull_request) Successful in 58m54s
/ deploy-x86_64 (pull_request) Successful in 29s
/ deploy-aarch64 (pull_request) Successful in 59s
/ build-aarch64 (pull_request) Successful in 2h40m59s

This commit is contained in:
Antoine Martin 2024-08-22 21:40:50 -04:00
parent c35b647286
commit 0c55a7ecc0
Signed by: forge
GPG key ID: D62A472A4AA7D541

View file

@ -28,7 +28,7 @@ index c3b8f7a..f609018
case $BASEBRANCH in
- *-stable) echo v"${BASEBRANCH%-*}";;
- master) echo edge;;
+ v*) echo v"${BASEBRANCH%-*}";;
+ v*) echo "$BASEBRANCH";;
+ edge) echo edge;;
*) die "Branch \"$BASEBRANCH\" not supported!"
esac