We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10d915f commit 00edd11Copy full SHA for 00edd11
1 file changed
.github/workflows/build.yml
@@ -7,11 +7,19 @@ on:
7
jobs:
8
build:
9
name: Build
10
- runs-on: macOS-12
+ runs-on: macos-14
11
steps:
12
- name: Checkout
13
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
14
with:
15
submodules: recursive
16
+ - name: Use HTTPS
17
+ run: |
18
+ git config --global url."https://github.com/".insteadOf git@github.com:
19
+ git config --global url."https://".insteadOf git://
20
- name: Build
- run: xcodebuild -scheme TreeSitterLanguages-Package -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14'
21
22
+ xcodebuild\
23
+ -scheme TreeSitterLanguages-Package\
24
+ -sdk iphonesimulator\
25
+ -destination 'platform=iOS Simulator,name=iPhone 15 Pro'
0 commit comments