From 88b313a970fd3ad81e882a150db262ce9f6e6c08 Mon Sep 17 00:00:00 2001 From: PartyDonut Date: Sat, 9 Aug 2025 18:08:13 +0200 Subject: [PATCH] Small workflow fix --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 83e5479..af8297b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: id: check run: | # 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 }}" elif [[ "${{ startsWith(github.ref, 'refs/tags/v') }}" == "true" ]]; then BUILD_TYPE="release"