There was an error while loading. Please reload this page.
1 parent 7c7c71a commit a27f422Copy full SHA for a27f422
1 file changed
.github/workflows/deploy_new_version.yml
@@ -7,12 +7,17 @@ on:
7
8
jobs:
9
deploy:
10
- runs-on: macos-15
+ runs-on: macos-latest
11
steps:
12
- uses: actions/checkout@v3
13
- uses: maxim-lobanov/setup-xcode@v1
14
with:
15
- xcode-version: "16.1"
+ xcode-version: "16.2"
16
+ - name: Manually download iOS 18.2
17
+ if: env.simulator_cached == 'false'
18
+ run: |
19
+ xcodebuild -downloadPlatform iOS -buildVersion 18.2 -exportPath ~/SimulatorRuntimes/
20
+ xcodebuild -importPlatform "/Users/runner/SimulatorRuntimes/iphonesimulator_18.2_22C150.dmg"
21
- run: swift run
22
working-directory: ./deploy_new_version
23
env:
0 commit comments