Skip to content

Commit

Permalink
[Github Actions] Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
buffer committed Sep 27, 2023
1 parent ab82797 commit 8c225cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/osx-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,17 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Platform configuration for macos-11
if: ${ matrix.os == 'macos-11' }
if: ${{ matrix.os == 'macos-11' }}
run:
echo "PLATFORM_VERSION=11" >> $GITHUB_ENV

- name: Platform configuration for macos-12
if: ${ matrix.os == 'macos-12' }
if: ${{ matrix.os == 'macos-12' }}
run:
echo "PLATFORM_VERSION=12" >> $GITHUB_ENV

- name: Platform configuration for macos-13
if: ${ matrix.os == 'macos-13' }
if: ${{ matrix.os == 'macos-13' }}
run:
echo "PLATFORM_VERSION=13" >> $GITHUB_ENV

Expand Down

0 comments on commit 8c225cf

Please sign in to comment.