Small workflow fix

This commit is contained in:
PartyDonut 2025-08-09 18:08:13 +02:00
parent 45337c9847
commit 88b313a970

View file

@ -52,7 +52,7 @@ jobs:
id: check id: check
run: | run: |
# Determine build type based on trigger and input # Determine build type based on trigger and input
if [[ "${{ github.event_name }}" == "workflow_dispatch"; then if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
BUILD_TYPE="${{ github.event.inputs.build_type }}" BUILD_TYPE="${{ github.event.inputs.build_type }}"
elif [[ "${{ startsWith(github.ref, 'refs/tags/v') }}" == "true" ]]; then elif [[ "${{ startsWith(github.ref, 'refs/tags/v') }}" == "true" ]]; then
BUILD_TYPE="release" BUILD_TYPE="release"