Skip to content

Commit 00edd11

Browse files
authored
Updates build workflow (simonbs#29)
* Updates build workflow * Update build.yml * Update build.yml
1 parent 10d915f commit 00edd11

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,19 @@ on:
77
jobs:
88
build:
99
name: Build
10-
runs-on: macOS-12
10+
runs-on: macos-14
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
with:
1515
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://
1620
- name: Build
17-
run: xcodebuild -scheme TreeSitterLanguages-Package -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14'
21+
run: |
22+
xcodebuild\
23+
-scheme TreeSitterLanguages-Package\
24+
-sdk iphonesimulator\
25+
-destination 'platform=iOS Simulator,name=iPhone 15 Pro'

0 commit comments

Comments
 (0)