Skip to content

Commit a53e2fd

Browse files
committed
ci: Use env for BUILD_TYPE in reusable-build.yml
1 parent cd93b2a commit a53e2fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/reusable-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,11 @@ jobs:
219219
if: ${{ inputs.version != '' }}
220220
env:
221221
INPUT_VERSION: ${{ inputs.version }}
222+
BUILD_TYPE: ${{ inputs.build_type }}
222223
run: |
223224
set -e
224225
EXPECTED_VERSION="clio-${INPUT_VERSION}"
225-
if [[ ${{ inputs.build_type }} == "Debug" ]]; then
226+
if [[ "${BUILD_TYPE}" == "Debug" ]]; then
226227
EXPECTED_VERSION="${EXPECTED_VERSION}+DEBUG"
227228
fi
228229

0 commit comments

Comments
 (0)