Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,13 @@ jobs:
- name: Download YouTube Music
id: download_youtube_music
run: wget "${{ inputs.ipa_url }}" --no-verbose -O ${{ github.workspace }}/main/ytm.ipa

- name: Build Tweak for Sideloading
id: build_package
run: |
cd ${{ github.workspace }}/main
make clean package SIDELOADING=1
make clean package SIDELOADING=1 WERROR=0 \
ADDITIONAL_OBJCXXFLAGS="-Wno-vla-cxx-extension -Wno-error=vla-cxx-extension" \
ADDITIONAL_CFLAGS="-Wno-vla -Wno-error=vla"
env:
THEOS: ${{ github.workspace }}/theos

Expand Down