Release #9
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
name: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
ipa_url: | |
description: "Direct link to the decrypted IPA" | |
default: "" | |
required: true | |
type: string | |
jobs: | |
build-tweak: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Download Tweak | |
run: | | |
set -e | |
status_code=$(curl -s -o /dev/null -w "%{http_code}" https://api.github.com/repos/${{ github.repository }}/releases/latest) | |
if [ "$status_code" -ne 200 ]; then | |
echo "No releases found or request failed" | |
echo "DEB_DOWNLOADED=false" >> $GITHUB_ENV | |
exit 0 | |
fi | |
release_info=$(curl -s https://api.github.com/repos/${{ github.repository }}/releases/latest) | |
release_version=$(echo "$release_info" | jq -r '.assets[] | select(.name | contains("iphoneos-arm.deb")) | .name' | grep -o '_[0-9.]\+_' | tr -d '_') | |
control_version=$(grep '^Version:' control | cut -d ' ' -f 2) | |
if [ "$release_version" = "$control_version" ]; then | |
echo "Versions match. Downloading DEB files..." | |
echo "$release_info" | jq -r '.assets[] | select(.name | endswith(".deb")) | .browser_download_url' | xargs -I {} curl -L -O {} | |
echo "DEB_DOWNLOADED=true" >> $GITHUB_ENV | |
else | |
echo "Versions do not match. No files will be downloaded." | |
echo "DEB_DOWNLOADED=false" >> $GITHUB_ENV | |
exit 0 | |
fi | |
- name: Check cache | |
if: env.DEB_DOWNLOADED == 'false' | |
run: echo upstream_heads=`git ls-remote https://github.com/theos/theos | head -n 1 | cut -f 1`-`git ls-remote https://github.com/theos/sdks | head -n 1 | cut -f 1` >> $GITHUB_ENV | |
- name: Use cache | |
if: env.DEB_DOWNLOADED == 'false' | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ github.workspace }}/theos | |
key: ${{ runner.os }}-${{ env.upstream_heads }} | |
- name: Prepare Theos | |
if: env.DEB_DOWNLOADED == 'false' | |
uses: Randomblock1/theos-action@v1 | |
- name: Build packages | |
if: env.DEB_DOWNLOADED == 'false' | |
run: make package FINALPACKAGE=1 && make package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless | |
- name: Set DEB path | |
run: | | |
if [ "${{ env.DEB_DOWNLOADED }}" == "true" ]; then | |
echo "DEB_PATH=${{ github.workspace }}/*-arm.deb" >> $GITHUB_ENV | |
echo "ROOTLESS_DEB_PATH=${{ github.workspace }}/*-arm64.deb" >> $GITHUB_ENV | |
else | |
echo "DEB_PATH=${{ github.workspace }}/packages/*-arm.deb" >> $GITHUB_ENV | |
echo "ROOTLESS_DEB_PATH=${{ github.workspace }}/packages/*-arm64.deb" >> $GITHUB_ENV | |
fi | |
- name: Upload package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: package | |
path: ${{ env.DEB_PATH }} | |
- name: Upload rootless package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rootless package | |
path: ${{ env.ROOTLESS_DEB_PATH }} | |
build-ipa: | |
runs-on: ubuntu-latest | |
needs: build-tweak | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install libplist-utils xmlstarlet libxml2-utils -y | |
- name: Download and Unzip Orion | |
run: | | |
curl -L -o Orion.zip $(curl -s https://api.github.com/repos/theos/orion/releases/latest | jq -r '.assets[0].browser_download_url') | |
unzip Orion.zip | |
- name: Download Discord IPA | |
run: | | |
curl -L -o discord.ipa ${{ github.event.inputs.ipa_url }} | |
- name: Make patcher directory | |
run: mkdir patcher | |
- name: Download IPA patcher | |
working-directory: patcher | |
run: | | |
curl -L -o patcher https://github.com/amsyarasyiq/bunny-ipa-patcher/releases/download/release-pyon/patcher.linux-amd64 | |
chmod +x patcher | |
- name: Download IPA icons | |
working-directory: patcher | |
run: | | |
curl -L -o ipa-icons.zip https://raw.githubusercontent.com/pyoncord/assets/main/ipa-icons.zip | |
- name: Extract Values | |
run: | | |
NAME=$(grep '^Name:' control | cut -d ' ' -f 2) | |
PACKAGE=$(grep '^Package:' control | cut -d ' ' -f 2) | |
VERSION=$(grep '^Version:' control | cut -d ' ' -f 2) | |
DEB_FILE_NAME="${PACKAGE}_${VERSION}_iphoneos-arm.deb" | |
echo "DEB_FILE_NAME=$DEB_FILE_NAME" >> $GITHUB_ENV | |
ROOTLESS_DEB_FILE_NAME="${PACKAGE}_${VERSION}_iphoneos-arm64.deb" | |
echo "ROOTLESS_DEB_FILE_NAME=$ROOTLESS_DEB_FILE_NAME" >> $GITHUB_ENV | |
echo "APP_NAME=$NAME" >> $GITHUB_ENV | |
- name: Inject tweak | |
run: | | |
mkdir -p ${{ github.workspace }}/build | |
git clone https://github.com/Al4ise/Azule.git | |
./Azule/azule -i discord.ipa -o ${{ github.workspace }}/build -f $(find ${{ github.workspace }} -name 'dev.theos.orion14_*_iphoneos-arm.deb' | head -n 1) ${{ github.workspace }}/${{ env.DEB_FILE_NAME }} | |
mv "${{ github.workspace }}/build/"*.ipa "${{ github.workspace }}/build/${{ env.APP_NAME }}.ipa" | |
- name: Patch Discord | |
working-directory: patcher | |
run : | | |
./patcher \ | |
-d ${{ github.workspace }}/build/${{ env.APP_NAME }}.ipa \ | |
-o ${{ github.workspace }}/build/${{ env.APP_NAME }}.ipa \ | |
-i ./ipa-icons.zip | |
- name: Upload ipa as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ipa | |
path: ${{ github.workspace }}/build/${{ env.APP_NAME }}.ipa | |
release-app: | |
runs-on: ubuntu-latest | |
needs: build-ipa | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Extract Values | |
run: | | |
NAME=$(grep '^Name:' control | cut -d ' ' -f 2) | |
PACKAGE=$(grep '^Package:' control | cut -d ' ' -f 2) | |
VERSION=$(grep '^Version:' control | cut -d ' ' -f 2) | |
DEB_FILE_NAME="${PACKAGE}_${VERSION}_iphoneos-arm.deb" | |
echo "DEB_FILE_NAME=$DEB_FILE_NAME" >> $GITHUB_ENV | |
ROOTLESS_DEB_FILE_NAME="${PACKAGE}_${VERSION}_iphoneos-arm64.deb" | |
echo "ROOTLESS_DEB_FILE_NAME=$ROOTLESS_DEB_FILE_NAME" >> $GITHUB_ENV | |
echo "APP_NAME=$NAME" >> $GITHUB_ENV | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install libplist-utils xmlstarlet libxml2-utils -y | |
- name: Extract Discord Version | |
run: | | |
unzip -q ${{ env.APP_NAME }}.ipa | |
DISCORD_VERSION=$(xmllint --xpath 'string(//key[. = "CFBundleShortVersionString"]/following-sibling::string[1])' Payload/Discord.app/Info.plist) | |
echo "DISCORD_VERSION=$DISCORD_VERSION" >> $GITHUB_ENV | |
- name: Create GitHub Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: v${{ env.DISCORD_VERSION }} | |
files: | | |
${{ env.DEB_FILE_NAME }} | |
${{ env.ROOTLESS_DEB_FILE_NAME }} | |
${{ env.APP_NAME }}.ipa | |
generate_release_notes: true | |
fail_on_unmatched_files: true | |
token: ${{ env.GITHUB_TOKEN }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
app-repo: | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
needs: release-app | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Extract App Name | |
run: | | |
NAME=$(grep '^Name:' control | cut -d ' ' -f 2) | |
echo "APP_NAME=$NAME" >> $GITHUB_ENV | |
- name: Download IPA artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: ipa | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install libplist-utils xmlstarlet libxml2-utils -y | |
- name: Update app-repo.json | |
run: | | |
unzip -q ${{ env.APP_NAME }}.ipa | |
VERSION=$(xmllint --xpath 'string(//key[. = "CFBundleShortVersionString"]/following-sibling::string[1])' Payload/Discord.app/Info.plist) | |
DATE=$(date -u +"%Y-%m-%d") | |
IPA_SIZE=$(ls -l ${{ env.APP_NAME }}.ipa | awk '{print $5}') | |
DOWNLOAD_URL=https://github.com/${{ github.repository }}/releases/download/v$VERSION/${{ env.APP_NAME }}.ipa | |
NEW_ENTRY=$(jq -n --arg version "$VERSION" --arg date "$DATE" --arg size "$IPA_SIZE" --arg downloadURL "$DOWNLOAD_URL" '{version: $version, date: $date, size: ($size | tonumber), downloadURL: $downloadURL}') | |
jq --argjson newEntry "$NEW_ENTRY" '.apps[0].versions |= [$newEntry] + .' app-repo.json > temp.json && mv temp.json app-repo.json | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
message: "chore: update app-repo.json" | |
add: app-repo.json |