-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 994 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: make -j8
- name: Upload plist
uses: actions/upload-artifact@v4
with:
name: plist.xcframework
path: output/plist.xcframework
- name: Upload usbmuxd
uses: actions/upload-artifact@v4
with:
name: usbmuxd.xcframework
path: output/usbmuxd.xcframework
- name: Upload libimobiledeviceGlue
uses: actions/upload-artifact@v4
with:
name: libimobiledeviceGlue.xcframework
path: output/libimobiledeviceGlue.xcframework
- name: Upload libimobiledevice
uses: actions/upload-artifact@v4
with:
name: libimobiledevice.xcframework
path: output/libimobiledevice.xcframework