We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd93b2a commit a53e2fdCopy full SHA for a53e2fd
.github/workflows/reusable-build.yml
@@ -219,10 +219,11 @@ jobs:
219
if: ${{ inputs.version != '' }}
220
env:
221
INPUT_VERSION: ${{ inputs.version }}
222
+ BUILD_TYPE: ${{ inputs.build_type }}
223
run: |
224
set -e
225
EXPECTED_VERSION="clio-${INPUT_VERSION}"
- if [[ ${{ inputs.build_type }} == "Debug" ]]; then
226
+ if [[ "${BUILD_TYPE}" == "Debug" ]]; then
227
EXPECTED_VERSION="${EXPECTED_VERSION}+DEBUG"
228
fi
229
0 commit comments