Build and Release #55
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: Build and Release | |
on: | |
workflow_dispatch: | |
inputs: | |
SPOTURL: | |
description: 'Direct URL to Spotify .ipa' | |
required: true | |
CHANGEVERSION: | |
description: 'SpotC++ Version Number' | |
required: false | |
EEVEEVERSION: | |
description: 'EeveeSpotify Version' | |
required: false | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up variables | |
id: setup | |
run: | | |
echo "EEVEEVERSION=${{ github.event.inputs.EEVEEVERSION }}" >> $GITHUB_ENV | |
echo "CHANGEVERSION=${{ github.event.inputs.CHANGEVERSION }}" >> $GITHUB_ENV | |
echo "SPOTURL=${{ github.event.inputs.SPOTURL }}" >> $GITHUB_ENV | |
- name: Install Homebrew | |
run: | | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile | |
eval "$(/opt/homebrew/bin/brew shellenv)" | |
- name: Install dpkg | |
run: brew install dpkg | |
- name: Install Pyzule | |
run: bash -c "$(curl https://raw.githubusercontent.com/asdfzxcvbn/pyzule/main/install-pyzule.sh)" | |
- name: Set EEVEEVERSION if not provided | |
if: ${{ github.event.inputs.EEVEEVERSION == '' || github.event.inputs.EEVEEVERSION == null }} | |
run: | | |
echo "EEVEEVERSION not provided, fetching latest release tag..." | |
export REALEEVEEVERSION=$(curl -s "https://api.github.com/repos/whoeevee/EeveeSpotify/releases/latest" | jq -r '.tag_name') | |
echo "REALEEVEEVERSION=$REALEEVEEVERSION" >> $GITHUB_ENV | |
- name: Set RealEeveeVersion if tag provided | |
if: ${{ env.EEVEEVERSION != '' }} | |
id: fetch-tags | |
run: | | |
EEVEEVERSION="${{ env.EEVEEVERSION }}" | |
# Fetch all tags from the repository | |
tags=$(curl -s https://api.github.com/repos/whoeevee/EeveeSpotify/tags | jq -r '.[].name') | |
# Find the tag that contains the EEVEEVERSION value | |
for tag in $tags; do | |
if [[ $tag == *"$EEVEEVERSION"* ]]; then | |
echo "REALEEVEEVERSION=$tag" >> $GITHUB_ENV | |
echo "REALEEVEEVERSION: ${{ env.REALEEVEEVERSION }}" | |
exit 0 | |
fi | |
done | |
# If no matching tag is found, fail the job | |
echo "No matching tag found for EEVEEVERSION=$EEVEEVERSION" | |
exit 1 | |
- name: Create Build Components folder | |
run: mkdir -p "Build Components" | |
- name: Set VirusTotal key as env variable | |
run: echo "VIRUSTOTALKEY=${{ secrets.VIRUSTOTALKEY }}" >> $GITHUB_ENV | |
- name: Download Spotify IPA | |
run: | | |
curl -L "${{ github.event.inputs.SPOTURL }}" -o "Build Components/Spotify.ipa" | |
echo "spotifypath=Build Components/Spotify.ipa" >> $GITHUB_ENV | |
env: | |
SPOTURL: ${{ github.event.inputs.SPOTURL }} | |
- name: Upload Spotify IPA to VirusTotal | |
if: ${{ env.VIRUSTOTALKEY }} | |
uses: crazy-max/ghaction-virustotal@v4 | |
id: vt-spotify | |
with: | |
files: "Build Components/Spotify.ipa" | |
vt_api_key: ${{ env.VIRUSTOTALKEY }} | |
- name: Set VirusTotal Analysis URL for Spotify IPA | |
if: ${{ env.VIRUSTOTALKEY }} | |
run: echo "VTVANILLASPOTIFY=${{ steps.vt-spotify.outputs.analysis }}" >> $GITHUB_ENV | |
- name: Download EeveeSpotify .deb files | |
run: | | |
eevee_asset=$(curl -s https://api.github.com/repos/whoeevee/EeveeSpotify/releases/tags/${{ env.REALEEVEEVERSION }} | jq -r '.assets[] | select(.name | startswith("com.eevee.spotify") and endswith("iphoneos-arm.deb")).browser_download_url') | |
curl -L "$eevee_asset" -o "Build Components/Eevee-arm" | |
echo "eevee-arm=Build Components/Eevee-arm" >> $GITHUB_ENV | |
env: | |
REALEEVEEVERSION: ${{ env.REALEEVEEVERSION }} | |
- name: Upload EeveeSpotify to VirusTotal | |
if: ${{ env.VIRUSTOTALKEY }} | |
uses: crazy-max/ghaction-virustotal@v4 | |
id: vt-eevee | |
with: | |
files: "Build Components/Eevee-arm" | |
vt_api_key: ${{ env.VIRUSTOTALKEY }} | |
- name: Set VirusTotal Analysis URL for EeveeSpotify | |
if: ${{ env.VIRUSTOTALKEY }} | |
run: echo "VTEEVEE=${{ steps.vt-eevee.outputs.analysis }}" >> $GITHUB_ENV | |
- name: Download SwiftProtobuf .deb file | |
run: | | |
protobuf_asset=$(curl -s https://api.github.com/repos/whoeevee/EeveeSpotify/releases/tags/${{ env.REALEEVEEVERSION }} | jq -r '.assets[] | select(.name | startswith("org.swift.protobuf.swiftprotobuf") and endswith("iphoneos-arm.deb")).browser_download_url') | |
curl -L "$protobuf_asset" -o "Build Components/SwiftProtobuf-arm" | |
echo "swiftprotobuf=Build Components/SwiftProtobuf-arm" >> $GITHUB_ENV | |
filename=$(basename "${protobuf_asset}") | |
protobuf_version=$(echo "${filename}" | sed -n 's/org.swift.protobuf.swiftprotobuf_\([^-]*\)_iphoneos-arm.deb/\1/p') | |
echo "SWIFTPROTOBUFVERSION=${protobuf_version}" >> $GITHUB_ENV | |
env: | |
REALEEVEEVERSION: ${{ env.REALEEVEEVERSION }} | |
- name: Upload SwiftProtobuf to VirusTotal | |
if: ${{ env.VIRUSTOTALKEY }} | |
uses: crazy-max/ghaction-virustotal@v4 | |
id: vt-swiftprotobuf | |
with: | |
files: "Build Components/SwiftProtobuf-arm" | |
vt_api_key: ${{ env.VIRUSTOTALKEY }} | |
- name: Set VirusTotal Analysis URL for SwiftProtobuf | |
if: ${{ env.VIRUSTOTALKEY }} | |
run: echo "VTSWIFTPROTOBUF=${{ steps.vt-swiftprotobuf.outputs.analysis }}" >> $GITHUB_ENV | |
- name: Download and process Orion Runtime | |
run: | | |
# Download the Packages file from repo.chariz.com | |
curl -sSL https://repo.chariz.com/Packages -o Packages | |
# Use awk to find entries for dev.theos.orion14, Architecture: iphoneos-arm, find the highest version | |
# extract the version, filename, SHA256 Hash, and MD5 hash | |
ORIONVERSION=$(awk 'BEGIN { RS = ""; FS = "\n"; highest_version = "" } $1 ~ /^Package: dev.theos.orion14$/ && $0 ~ /Architecture: iphoneos-arm([^6]|$)/ { for (i = 1; i <= NF; i++) { if ($i ~ /^Version: /) { split($i, a, " "); version = a[2]; if (highest_version == "" || version > highest_version) { highest_version = version } } } } END { if (highest_version != "") print highest_version }' Packages) | |
echo "Orion Version Extracted: $ORIONVERSION" | |
FILENAME=$(awk 'BEGIN{RS="";FS="\n";highest_version=""} $1~/^Package: dev.theos.orion14$/ && $0~/Architecture: iphoneos-arm/{current_version="";current_filename="";for(i=1;i<=NF;i++){if($i~/^Version: /){split($i,a," ");version=a[2];if(current_version==""||version>current_version){current_version=version}}else if($i~/^Filename: /){split($i,a," ");current_filename=a[2]}}if(highest_version==""||current_version>highest_version){highest_version=current_version;highest_filename=current_filename}} END{if(highest_version!="")print highest_filename}' Packages) | |
echo "Orion FileName Extracted: $FILENAME" | |
SHA256=$(awk 'BEGIN{RS="";FS="\n";highest_version="";sha256="noSHA"} $1~/^Package: dev.theos.orion14$/ && $0~/Architecture: iphoneos-arm/{current_version="";sha256_found=0;for(i=1;i<=NF;i++){if($i~/^Version: /){split($i,a," ");version=a[2];if(current_version==""||version>current_version){current_version=version}}else if($i~/^SHA256: /){split($i,a," ");sha256=a[2];sha256_found=1}}if(highest_version==""||current_version>highest_version){highest_version=current_version;if(sha256_found==1){highest_sha256=sha256}else{highest_sha256="noSHA"}}}END{if(highest_version!="")print highest_sha256}' Packages) | |
echo "Orion SHA256 Hash Extracted: $SHA256" | |
MD5=$(awk 'BEGIN{RS="";FS="\n";highest_version="";md5sum="noMD5"} $1~/^Package: dev.theos.orion14$/ && $0~/Architecture: iphoneos-arm/{current_version="";for(i=1;i<=NF;i++){if($i~/^Version: /){split($i,a," ");version=a[2];if(current_version==""||version>current_version){current_version=version}}else if($i~/^MD5Sum: /){split($i,a," ");md5sum=a[2]}}if(highest_version==""||current_version>highest_version){highest_version=current_version;highest_md5sum=md5sum}} END{if(highest_version!="")print highest_md5sum}' Packages) | |
echo "Orion MD5 Hash Extracted: $MD5" | |
#Download the .deb file | |
echo "Downloading From: https://repo.chariz.com/$FILENAME" | |
curl -o "Build Components/orion" "https://repo.chariz.com/$FILENAME" | |
echo "orion=Build Components/orion" >> $GITHUB_ENV | |
#Check Hash | |
if [[ "${SHA256}" != "noSHA" ]]; then | |
echo "Expected SHA256 Hash: ${SHA256}" | |
calculated_sha256=$(shasum -a 256 "$orion" | awk '{print $1}') | |
echo "Calculated SHA256 Hash: $calculated_sha256" | |
if [[ "${calculated_sha256}" == "${SHA256}" ]]; then | |
echo "SHA256 matches. Continuing..." | |
else | |
echo "SHA256 does not match." | |
exit 1 | |
fi | |
elif [[ "${MD5}" != "noMD5" ]]; then | |
echo "Expected MD5 Hash: ${MD5}" | |
calculated_md5=$(md5 -q "$orion" | awk '{print $1}') | |
echo "Calculated MD5 Hash: $calculated_md5" | |
if [[ "${calculated_md5}" == "${MD5}" ]]; then | |
echo "MD5 matches. Continuing..." | |
else | |
echo "MD5 does not match." | |
exit 1 | |
fi | |
else | |
echo "Neither SHA256 nor MD5 is valid" | |
exit 1 | |
fi | |
#CleanUp | |
rm -f Packages | |
- name: Upload Orion to VirusTotal | |
if: ${{ env.VIRUSTOTALKEY }} | |
uses: crazy-max/ghaction-virustotal@v4 | |
id: vt-orion | |
with: | |
files: "Build Components/orion" | |
vt_api_key: ${{ env.VIRUSTOTALKEY }} | |
- name: Set VirusTotal Analysis URL for Orion | |
if: ${{ env.VIRUSTOTALKEY }} | |
run: echo "VTORION=${{ steps.vt-orion.outputs.analysis }}" >> $GITHUB_ENV | |
- name: Download Sposify .deb file from Dynastic repo | |
run: | | |
sposify_url=$(curl -s https://repo.dynastic.co/api/Packages | jq -r '.[] | select(.package=="com.spos").version') | |
sposify_version=$(echo $sposify_url | jq -r .version) | |
sposify_download_url=$(echo $sposify_url | jq -r .url) | |
curl -L "$sposify_download_url" -o "Build Components/sposify" | |
echo "sposify=Build Components/sposify" >> $GITHUB_ENV | |
echo "SPOSIFYVERSION=$sposify_version" >> $GITHUB_ENV | |
- name: Upload Sposify to VirusTotal | |
if: ${{ env.VIRUSTOTALKEY }} | |
uses: crazy-max/ghaction-virustotal@v4 | |
id: vt-sposify | |
with: | |
files: "Build Components/sposify" | |
vt_api_key: ${{ env.VIRUSTOTALKEY }} | |
- name: Set VirusTotal Analysis URL for Sposify | |
if: ${{ env.VIRUSTOTALKEY }} | |
run: echo "VTSPOSIFY=${{ steps.vt-sposify.outputs.analysis }}" >> $GITHUB_ENV | |
- name: Download SposifyFix .deb file from Level3tjg repo | |
run: | | |
sposifyfix_url=$(curl -s https://level3tjg.me/repo/Packages | jq -r '.[] | select(.package=="com.level3tjg.sposifyfix").version') | |
sposifyfix_version=$(echo $sposifyfix_url | jq -r .version) | |
sposifyfix_download_url=$(echo $sposifyfix_url | jq -r .url) | |
curl -L "$sposifyfix_download_url" -o "Build Components/sposifyfix" | |
echo "sposifyfix=Build Components/sposifyfix" >> $GITHUB_ENV | |
echo "SPOSIFYFIXVERSION=$sposifyfix_version" >> $GITHUB_ENV | |
- name: Upload SposifyFix to VirusTotal | |
if: ${{ env.VIRUSTOTALKEY }} | |
uses: crazy-max/ghaction-virustotal@v4 | |
id: vt-sposifyfix | |
with: | |
files: "Build Components/sposifyfix" | |
vt_api_key: ${{ env.VIRUSTOTALKEY }} | |
- name: Set VirusTotal Analysis URL for SposifyFix | |
if: ${{ env.VIRUSTOTALKEY }} | |
run: echo "VTSPOSIFYFIX=${{ steps.vt-sposifyfix.outputs.analysis }}" >> $GITHUB_ENV | |
- name: Clone OpenSpotifySafariExtension | |
run: git clone https://github.com/whoeevee/OpenSpotifySafariExtension | |
- name: Copy OpenSpotifySafariExtension.appex to Build Components | |
run: | | |
cp OpenSpotifySafariExtension/OpenSpotifySafariExtension.appex "Build Components/" | |
echo "EXTCOMMIT=$(git -C OpenSpotifySafariExtension rev-parse --short HEAD)" >> $GITHUB_ENV | |
- name: Compress OpenSpotifySafariExtension to zip | |
run: | | |
cd OpenSpotifySafariExtension | |
zip -r ../Build\ Components/OpenSpotifySafariExtension.zip ./* | |
- name: Upload OpenSpotifySafariExtension to VirusTotal | |
if: ${{ env.VIRUSTOTALKEY }} | |
uses: crazy-max/ghaction-virustotal@v4 | |
id: vt-openspotify | |
with: | |
files: "Build Components/OpenSpotifySafariExtension.zip" | |
vt_api_key: ${{ env.VIRUSTOTALKEY }} | |
- name: Set VirusTotal Analysis URL for OpenSpotifySafariExtension | |
if: ${{ env.VIRUSTOTALKEY }} | |
run: echo "VTEXT=${{ steps.vt-openspotify.outputs.analysis }}" >> $GITHUB_ENV | |
- name: Duplicate and unzip Spotify.ipa | |
run: | | |
cp "Build Components/Spotify.ipa" "Build Components/SpotifyAnylises.zip" | |
unzip "Build Components/SpotifyAnylises.zip" -d payload | |
- name: Extract info.plist from Spotify | |
run: | | |
cp payload/Payload/Spotify.app/Info.plist "Build Components/Info.plist" | |
echo "VANILLASPOTIFYVERSION=$(defaults read "Build Components/Info.plist" CFBundleVersion)" >> $GITHUB_ENV | |
- name: Modify Spotify with OpenSpotifySafariExtension.appex | |
run: | | |
cp "Build Components/OpenSpotifySafariExtension.appex" payload/Payload/Spotify.app/PlugIns/ | |
cd payload | |
zip -r ../Build\ Components/SpotifyEXT.zip ./* | |
cd ../Build\ Components | |
mv SpotifyEXT.zip SpotifyEXT.ipa | |
echo "spotifyEXTpath=Build Components/SpotifyEXT.ipa" >> $GITHUB_ENV | |
rm -rf payload | |
rm SpotifyAnylises.zip | |
rm Info.plist | |
- name: Set Change Version | |
id: set-change-version | |
run: | | |
CHANGEVERSION="${{ github.event.inputs.CHANGEVERSION }}" | |
if [ -z "$CHANGEVERSION" ]; then | |
latest_tag=$(curl -s https://api.github.com/repos/SpotCompiled/SpotC-Plus-Plus/releases/latest | jq -r .tag_name) | |
base_version=${latest_tag#v} | |
IFS='.' read -ra ADDR <<< "$base_version" | |
last_number=${ADDR[2]} | |
new_last_number=$((last_number + 1)) | |
CHANGEVERSION="${ADDR[0]}.${ADDR[1]}.$new_last_number" | |
fi | |
echo "CHANGEVERSION=$CHANGEVERSION" >> $GITHUB_ENV | |
- name: Set Components Path | |
run: echo "componentspath=Build Components" >> $GITHUB_ENV | |
- name: Run Pyzule | |
run: pyzule -i ${{ env.spotifyEXTpath }} -o ${{ env.componentspath }}/SpotifyPatched.ipa -v ${{ env.CHANGEVERSION }} -b com.yodaluca23.SpotCPlusPlus -f ${{ env.sposifyfix }} ${{ env.sposify }} ${{ env.orion }} ${{ env.swiftprotobuf }} ${{ env.eevee-arm }} -u | |
- name: Upload SpotifyPatched.ipa to VirusTotal | |
if: ${{ env.VIRUSTOTALKEY }} | |
uses: crazy-max/ghaction-virustotal@v4 | |
id: vt-spotc | |
with: | |
files: "${{ env.componentspath }}/SpotifyPatched.ipa" | |
vt_api_key: ${{ env.VIRUSTOTALKEY }} | |
- name: Set VirusTotal Analysis URL for SpotC++ | |
if: ${{ env.VIRUSTOTALKEY }} | |
run: echo "VTSPOTC=${{ steps.vt-spotc.outputs.analysis }}" >> $GITHUB_ENV | |
- name: Create GitHub Release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: "v${{ env.CHANGEVERSION }}" | |
name: "SpotC++ v${{ env.CHANGEVERSION }}" | |
draft: true | |
files: ${{ env.componentspath }}/SpotifyPatched.ipa | |
file_glob: true | |
body: | | |
## ChangeLog | |
- Updated [EeveeSpotify](https://github.com/whoeevee/EeveeSpotify) to ${{ env.REALEEVEEVERSION }} | |
$(curl -s https://api.github.com/repos/whoeevee/EeveeSpotify/releases/tags/${{ env.REALEEVEEVERSION }} | jq -r '.body' | sed 's/^/- (EeveeSpotify) /') | |
- Updated Spotify to version ${{ env.VANILLASPOTIFYVERSION }} | |
*** | |
Vanilla IPA decrypted using [a fork of BagBak](https://github.com/TbhLovers/bagbak), on my personal MacBook Air and Jailbroken iPhone XR running [Dopamine](https://github.com/opa334/Dopamine), feel free to contact me with questions about this environment. | |
App .ipa modified and tweaks injected using Pyzule with the github Action Workflow. | |
$(if [ -n "${{ secrets.VIRUSTOTALKEY }}" ]; then | |
echo "<details> | |
<summary>Version Details & VirusTotal Results</summary><br> | |
Spotify Version: v${{ env.VANILLASPOTIFYVERSION }} | |
[Vanilla Spotify VirusTotal](${{ env.VTVANILLASPOTIFY }})<br> | |
EeveeSpotify Version: ${{ env.REALEEVEEVERSION }} | |
[EeveeSpotify .deb VirusTotal](${{ env.VTEEVEE }})<br> | |
Sposify v${{ env.SPOSIFYVERSION }} | |
[Sposify VirusTotal](${{ env.VTSPOSIFY }})<br> | |
OpenSpotifySafariExtension Commit: ${{ env.EXTCOMMIT }} | |
[OpenSpotifySafariExtension Repo Compressed .zip VirusTotal](${{ env.VTEXT }})<br> | |
Sposify Fix v${{ env.SPOSIFYFIXVERSION }} | |
[Sposify Fix VirusTotal](${{ env.VTSPOSIFYFIX }})<br> | |
Orion Runtime (iOS 14 - 16) v${{ env.ORIONVERSION }} | |
[Orion Runtime (iOS 14 - 16) .deb VirusTotal](${{ env.VTORION }})<br> | |
SwiftProtobuf Framework v${{ env.SWIFTPROTOBUFVERSION }} | |
[SwiftProtobuf Framework .deb VirusTotal](${{ env.VTSWIFTPROTOBUF }})<br> | |
SpotC++ Version: v${{ env.CHANGEVERSION }} | |
[SpotC++ VirusTotal](${{ env.VTSPOTC }}) | |
<br> | |
</details>"; fi) |