Fix order #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | | |
brew install automake autoconf libtool pkg-config | |
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 |