simplify prerelease detection

This commit is contained in:
Fabian Freund
2025-07-20 12:21:11 +02:00
parent d3c6771b6a
commit 46e929dc88
+1 -1
View File
@@ -36,7 +36,7 @@ jobs:
- name: Determine build type
id: build-type
run: |
if [[ "${{ github.ref_name }}" =~ ^v.*-(pre|alpha) ]]; then
if [[ "${{ github.ref_name }}" =~ (pre|alpha) ]]; then
echo "is_prerelease=true" >> $GITHUB_OUTPUT
echo "Build type: Prerelease (APK only)"
else