Skip to content

Commit

Permalink
buildapp.yml - update to MACOS-13 (qnblackcat#1583)
Browse files Browse the repository at this point in the history
  • Loading branch information
aricloverEXALT authored Nov 19, 2024
1 parent d92662d commit 7f2a98d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/buildapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ concurrency:
jobs:
build:
name: Build uYouPlus
runs-on: macos-12
runs-on: macos-13
permissions:
contents: write

steps:
- name: Checkout Main
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.2.1
with:
path: main
submodules: recursive
Expand All @@ -70,7 +70,7 @@ jobs:
run: echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH

- name: Setup Theos
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.2.1
with:
repository: theos/theos
ref: master
Expand All @@ -79,7 +79,7 @@ jobs:

- name: Caching SDK
id: SDK
uses: actions/cache@v4.0.0
uses: actions/cache@v4.1.1
env:
cache-name: iOS-16.5-SDK
with:
Expand All @@ -97,7 +97,7 @@ jobs:
THEOS: ${{ github.workspace }}/theos

- name: Setup Theos Jailed
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.2.1
with:
repository: qnblackcat/theos-jailed
ref: master
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:

- name: Upload Artifact
if: ${{ inputs.upload_artifact }}
uses: actions/upload-artifact@v4.3.0
uses: actions/upload-artifact@v4.4.3
env:
UYOU_VERSION: ${{ inputs.uyou_version }}
YOUTUBE_VERSION: ${{ steps.prepare_youtube.outputs.youtube_version }}
Expand Down
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export TARGET = iphone:clang:16.5:14.0
export SDK_PATH = $(THEOS)/sdks/iPhoneOS16.5.sdk/
export SYSROOT = $(SDK_PATH)
export ARCHS = arm64

export libcolorpicker_ARCHS = arm64
Expand All @@ -14,11 +16,12 @@ MODULES = jailed
endif

ifndef YOUTUBE_VERSION
YOUTUBE_VERSION = 19.25.4
YOUTUBE_VERSION = 19.40.4
endif
ifndef UYOU_VERSION
UYOU_VERSION = 3.0.3
UYOU_VERSION = 3.0.4
endif
PACKAGE_NAME = $(TWEAK_NAME)
PACKAGE_VERSION = $(YOUTUBE_VERSION)-$(UYOU_VERSION)

INSTALL_TARGET_PROCESSES = YouTube
Expand Down

0 comments on commit 7f2a98d

Please sign in to comment.