forgejo-ci: fix double v in repo
All checks were successful
All checks were successful
This commit is contained in:
parent
028c74381d
commit
ed0ce9cf1a
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ index c3b8f7a..f609018
|
||||||
case $BASEBRANCH in
|
case $BASEBRANCH in
|
||||||
- *-stable) echo v"${BASEBRANCH%-*}";;
|
- *-stable) echo v"${BASEBRANCH%-*}";;
|
||||||
- master) echo edge;;
|
- master) echo edge;;
|
||||||
+ v*) echo v"${BASEBRANCH%-*}";;
|
+ v*) echo "$BASEBRANCH";;
|
||||||
+ edge) echo edge;;
|
+ edge) echo edge;;
|
||||||
*) die "Branch \"$BASEBRANCH\" not supported!"
|
*) die "Branch \"$BASEBRANCH\" not supported!"
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue