Skip to content

Commit

Permalink
Fixed workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
bok- committed Jul 14, 2024
1 parent cd0a733 commit cbd27bb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ios-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
check-changes:
name: Check for Changes
Expand All @@ -31,7 +31,7 @@ jobs:
matrix:
xcode: [ "15.4", "16.0" ]
os: [ macos-14, macos-14-large ]
runs-on: {{ $matrix.os }}
runs-on: ${{ matrix.os }}

env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
matrix:
xcode: [ "15.4", "16.0" ]
os: [ macos-14, macos-14-large ]
runs-on: {{ $matrix.os }}
runs-on: ${{ matrix.os }}

env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tvos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
matrix:
xcode: [ "15.4", "16.0" ]
os: [ macos-14, macos-14-large ]
runs-on: {{ $matrix.os }}
runs-on: ${{ matrix.os }}

env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/visionos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
matrix:
xcode: [ "15.4", "16.0" ]
os: [ macos-14, macos-14-large ]
runs-on: {{ $matrix.os }}
runs-on: ${{ matrix.os }}

env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/watchos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
check-changes:
name: Check for Changes
Expand All @@ -31,7 +31,7 @@ jobs:
matrix:
xcode: [ "15.4", "16.0" ]
os: [ macos-14, macos-14-large ]
runs-on: {{ $matrix.os }}
runs-on: ${{ matrix.os }}

env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
Expand Down

0 comments on commit cbd27bb

Please sign in to comment.