We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d85b2c6 commit 6b607c4Copy full SHA for 6b607c4
1 file changed
.github/workflows/test.yml
@@ -26,8 +26,8 @@ on:
26
27
env:
28
HXCPP_ARCH_FLAG: ${{ inputs.arch == 'Arm64' && 'HXCPP_ARM64' || format('HXCPP_M{0}', inputs.arch) }}
29
- HAXE_TARGET_FLAG: ${{ inputs.target_flag == '' && format('-D {0}', inputs.target_flag) || '' }}
30
- HXCPP_TARGET_FLAG: ${{ inputs.target_flag == '' && format('-D{0}', inputs.target_flag) || '' }}
+ HAXE_TARGET_FLAG: ${{ inputs.target_flag && format('-D {0}', inputs.target_flag) || '' }}
+ HXCPP_TARGET_FLAG: ${{ inputs.target_flag && format('-D{0}', inputs.target_flag) || '' }}
31
32
jobs:
33
haxe:
0 commit comments