Merge pull request #15387 from keymanapp/maint/resources/core-arm64-windows-test-set-shell

maint(resources): set shell for steps in core-arm64-windows-test.yml
This commit is contained in:
Marc Durdin 2025-12-22 23:52:21 +01:00 committed by GitHub
commit e14aa1b2ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -135,23 +135,27 @@ jobs:
steps:
- name: Set success
if: needs.core-arm64-windows-test.result == 'success'
shell: bash
run: |
echo "RESULT=success" >> $GITHUB_ENV
echo "MSG=Keyman Core ARM64 test succeeded" >> $GITHUB_ENV
- name: Set cancelled
if: needs.core-arm64-windows-test.result == 'cancelled'
shell: bash
run: |
echo "RESULT=error" >> $GITHUB_ENV
echo "MSG=Keyman Core ARM64 test cancelled" >> $GITHUB_ENV
- name: Set failure
if: needs.core-arm64-windows-test.result == 'failure'
shell: bash
run: |
echo "RESULT=failure" >> $GITHUB_ENV
echo "MSG=Keyman Core ARM64 test failed" >> $GITHUB_ENV
- name: Set final status
shell: bash
run: |
gh api \
--method POST \