Skip to content

Commit 36b563d

Browse files
ci(github): fix bad substitution in macos for runners.yml
1 parent ff3899b commit 36b563d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.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@L}
59+
run: echo $RUNNER_OS
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

0 commit comments

Comments
 (0)