Browse Source

Rename workflow and add type output

Armin Schrenk 2 years ago
parent
commit
9ca8072ab6
1 changed files with 15 additions and 0 deletions
  1. 15 0
      .github/workflows/get-version-info.yml

+ 15 - 0
.github/workflows/get-version-info.yml

@@ -17,6 +17,9 @@ on:
       revNum:
         description: "The revision number"
         value: ${{ jobs.determine-version.outputs.revNum}}
+      versionType:
+        description: "Type of the version. Values are [stable, alpha, beta, rc, unknown]"
+        value: ${{ jobs.determine-version.outputs.type }}
 
 env:
   JAVA_VERSION: 19
@@ -31,6 +34,7 @@ jobs:
       semVerNum: ${{ steps.versions.outputs.semVerNum }}
       semVerStr: ${{ steps.versions.outputs.semVerStr }}
       revNum: ${{ steps.versions.outputs.revNum }}
+      type: ${{ steps.versions.outputs.type}}
     steps:
       - uses: actions/checkout@v3
         with:
@@ -53,9 +57,20 @@ jobs:
           fi
           SEM_VER_NUM=`echo ${SEM_VER_STR} | sed -E 's/([0-9]+\.[0-9]+\.[0-9]+).*/\1/'`
           REVCOUNT=`git rev-list --count HEAD`
+          TYPE="unknown"
+          if [[ $SEM_VER_STR =~ [0-9]+\.[0-9]+\.[0-9]+ ]]; then
+            TYPE="stable"
+          elif [[ $SEM_VER_STR =~ [0-9]+\.[0-9]+\.[0-9]+-alpha[1-9] ]]; then
+            TYPE="alpha"
+          elif [[ $SEM_VER_STR =~ [0-9]+\.[0-9]+\.[0-9]+-beta[1-9] ]]; then
+            TYPE="beta"
+          elif [[ $SEM_VER_STR =~ [0-9]+\.[0-9]+\.[0-9]+-rc[1-9] ]]; then
+            TYPE="rc"
+          fi
           echo "::set-output name=semVerStr::${SEM_VER_STR}"
           echo "::set-output name=semVerNum::${SEM_VER_NUM}"
           echo "::set-output name=revNum::${REVCOUNT}"
+          echo "::set-output name=type::${TYPE}"
       - name: Validate Version
         uses: skymatic/semver-validation-action@v1
         with: