We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f830870 commit 4d7b328Copy full SHA for 4d7b328
.github/workflows/getReleaseType.sh
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+case "$1" in
3
+ prerelease | patch | minor | major )
4
+ TYPE=$1 ;;
5
+ * )
6
+ TYPE='patch' ;;
7
+ esac
8
+echo "$TYPE"
0 commit comments