forked from absidue/YouTube-Reborn
-
Notifications
You must be signed in to change notification settings - Fork 39
48 lines (40 loc) · 1.22 KB
/
builddeb.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
43
44
45
46
47
48
# This has been created by @lillieH1000
name: Build the YouTube Reborn deb
on:
workflow_dispatch:
jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@main
- name: Checkout theos/theos
uses: actions/checkout@main
with:
repository: theos/theos
ref: 5bfdc3cb7133ec1cab43182115d902e2b57c9eac
submodules: recursive
path: theos
- name: Checkout theos/sdks
uses: actions/checkout@main
with:
repository: theos/sdks
ref: master
sparse-checkout: iPhoneOS16.5.sdk
path: theos/sdks
- name: Checkout PoomSmart/YouTubeHeader
uses: actions/checkout@main
with:
repository: PoomSmart/YouTubeHeader
ref: main
path: YouTubeHeader
- name: Build Package
run: |
brew install make ldid
export THEOS=theos
gmake clean package FINALPACKAGE=1
gmake clean package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless
gmake clean package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=roothide
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
path: packages/*.deb