Ermittlung Kanal angepasst
All checks were successful
Release Plugin / release (push) Successful in 4s
All checks were successful
Release Plugin / release (push) Successful in 4s
This commit is contained in:
@@ -40,45 +40,28 @@ jobs:
|
||||
id: releaseinfo
|
||||
run: |
|
||||
TAG="${{ github.ref_name }}"
|
||||
VERSION="${TAG#v}"
|
||||
|
||||
case "$TAG" in
|
||||
*-unstable*)
|
||||
VERSION="${TAG%-unstable}"
|
||||
VERSION="${VERSION#v}"
|
||||
CHANNEL="unstable"
|
||||
DRAFT="false"
|
||||
PRERELEASE="true"
|
||||
;;
|
||||
*-testing*)
|
||||
VERSION="${TAG%-testing}"
|
||||
VERSION="${VERSION#v}"
|
||||
CHANNEL="testing"
|
||||
DRAFT="false"
|
||||
PRERELEASE="true"
|
||||
;;
|
||||
v*)
|
||||
VERSION="${TAG#v}"
|
||||
CHANNEL="stable"
|
||||
DRAFT="false"
|
||||
PRERELEASE="false"
|
||||
;;
|
||||
t*)
|
||||
VERSION="${TAG#t}"
|
||||
CHANNEL="testing"
|
||||
DRAFT="false"
|
||||
PRERELEASE="true"
|
||||
;;
|
||||
u*)
|
||||
VERSION="${TAG#u}"
|
||||
*-*)
|
||||
CHANNEL="unstable"
|
||||
DRAFT="false"
|
||||
PRERELEASE="true"
|
||||
;;
|
||||
*)
|
||||
VERSION="${TAG#?}"
|
||||
CHANNEL="unstable"
|
||||
CHANNEL="stable"
|
||||
DRAFT="false"
|
||||
PRERELEASE="true"
|
||||
PRERELEASE="false"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
Reference in New Issue
Block a user