Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
# test is copied pasted from test.yml - do in a clean way in the future
# BEGIN COPY PASTE FROM TEST.YML
test:
runs-on: macos-latest
runs-on: macos-15

strategy:
fail-fast: false
Expand All @@ -23,7 +23,7 @@ jobs:
run: fastlane ${{ matrix.platform }} tests

pod-lint:
runs-on: macos-latest
runs-on: macos-15

steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +34,7 @@ jobs:
# END COPY PASTE FROM TEST.YML

deploy-cocoapods:
runs-on: macos-latest
runs-on: macos-15
needs: [pod-lint, test]

steps:
Expand All @@ -47,7 +47,7 @@ jobs:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}

sign-and-build-frameworks:
runs-on: macos-latest
runs-on: macos-15
needs: [pod-lint, test]

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
runs-on: macos-latest
runs-on: macos-15

strategy:
fail-fast: false
Expand All @@ -23,7 +23,7 @@ jobs:
run: fastlane ${{ matrix.platform }} tests

pod-lint:
runs-on: macos-latest
runs-on: macos-15

steps:
- uses: actions/checkout@v3
Expand Down