Skip to content

Commit 46ecb5a

Browse files
ci(github): lowercase runner in macos for runners.yml
1 parent 36b563d commit 46ecb5a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/runners.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ jobs:
5656
runs-on: macos-15
5757
steps:
5858
- name: ${{ runner.os }}
59-
run: echo $RUNNER_OS
59+
run: echo $RUNNER_OS | tr '[:upper:]' '[:lower:]'
6060

6161
macos-14:
6262
runs-on: macos-14
6363
steps:
6464
- name: ${{ runner.os }}
65-
run: echo $RUNNER_OS
65+
run: echo $RUNNER_OS | tr '[:upper:]' '[:lower:]'

0 commit comments

Comments
 (0)