-
Notifications
You must be signed in to change notification settings - Fork 71
43 lines (33 loc) · 1.23 KB
/
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
name: Run Makefile
on:
workflow_dispatch:
jobs:
build:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies (packages)
run: |
curl -LO https://github.com/ProcursusTeam/ldid/releases/download/v2.1.5-procursus7/ldid_macosx_x86_64
sudo install -m755 ldid_macosx_x86_64 /usr/local/bin/ldid
brew install 7zip gnu-sed
- name: List Xcode installations
run: sudo ls -1 /Applications | grep "Xcode"
- name: Select Xcode 15.1
run: sudo xcode-select -s /Applications/Xcode_15.1.app/Contents/Developer
- name: Compile palera1nLoaderTV
run: make PLATFORM=appletvos SCHEME=palera1nLoaderTV package
- name: Compile palera1nLoader
run: make PLATFORM=iphoneos SCHEME=palera1nLoader package
- name: Upload artifact
uses: wangyucode/[email protected]
with:
host: ${{ secrets.STATIC_FTP_HOST }}
port: ${{ secrets.STATIC_FTP_PORT }}
username: static
password: ${{ secrets.STATIC_FTP_PASS }}
forceUpload: true
dryRun: false
localDir: 'packages/'
remoteDir: '/artifacts/loader/universal_lite'