revert(ci): use new case syntax in workflows (#49665)

Revert "ci: use new case syntax in workflows (#49590)"

This reverts commit def7854848.
This commit is contained in:
John Kleinschmidt
2026-02-04 14:55:20 -05:00
committed by GitHub
parent 6a47bb4731
commit 4ea2d816b8
5 changed files with 9 additions and 29 deletions

View File

@@ -40,7 +40,7 @@ runs:
echo "GN_EXTRA_ARGS=$GN_APPENDED_ARGS" >> $GITHUB_ENV
- name: Set GN_EXTRA_ARGS for Windows
shell: bash
if: ${{ inputs.target-arch != 'x64' && inputs.target-platform == 'win' }}
if: ${{inputs.target-arch != 'x64' && inputs.target-platform == 'win' }}
run: |
GN_APPENDED_ARGS="$GN_EXTRA_ARGS target_cpu=\"${{ inputs.target-arch }}\""
echo "GN_EXTRA_ARGS=$GN_APPENDED_ARGS" >> $GITHUB_ENV