Skip to content

Commit b809956

Browse files
committed
Fixed config lowercase
1 parent 8c87d0f commit b809956

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/linux.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,6 @@ jobs:
3535

3636
- name: Build
3737
working-directory: ${{env.GITHUB_WORKSPACE}}
38-
run: make -j$(nproc) config=${{ lower(matrix.configuration) }}_${{env.BUILD_PLATFORM}}
38+
run: |
39+
CONFIG_LOWER=$(echo "${{ matrix.configuration }}" | tr '[:upper:]' '[:lower:]')
40+
make -j$(nproc) config=${CONFIG_LOWER}_${{env.BUILD_PLATFORM}}

0 commit comments

Comments
 (0)