-
Notifications
You must be signed in to change notification settings - Fork 20
834 lines (745 loc) · 45.2 KB
/
Build and Release.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
name: Build and Release
on:
workflow_dispatch:
inputs:
SPOTURL:
description: 'Direct URL to Spotify .ipa'
required: true
CHANGEVERSION:
description: 'SpotC++ Version Number'
required: false
USEACTIONSEEVEE:
description: 'Get EeveeSpotify from latest EeveeSpotfiy build action'
required: true
default: false
type: boolean
EEVEEVERSION:
description: 'EeveeSpotify Version'
required: false
EEVEEREPO:
description: 'Override repo for EeveeSpotify'
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
echo "VIRUSTOTALKEY=${{ secrets.VIRUSTOTALKEY }}" >> $GITHUB_ENV
- name: Set Workflow URL
run: |
echo "WORKFLOWURL=https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> $GITHUB_ENV
echo "Workflow URL is $WORKFLOWURL"
- name: Set EeveeSpotify Repo if given
if: ${{ github.event.inputs.EEVEEREPO != '' }}
run: |
EEVEEREPO=$(echo "${{ github.event.inputs.EEVEEREPO }}" | sed -E 's|https://github.com/([^/]+)/([^/]+)|\1/\2|' | sed 's|^https://github.com/||')
echo "EEVEEREPO=$EEVEEREPO" >> $GITHUB_ENV
- name: Set EeveeSpotify Repo if not given
if: ${{ github.event.inputs.EEVEEREPO == '' }}
run: |
EEVEEREPO=$(echo "whoeevee/EeveeSpotify")
echo "EEVEEREPO=$EEVEEREPO" >> $GITHUB_ENV
- name: Install Pyzule
run: bash -c "$(curl https://raw.githubusercontent.com/yodaluca23/pyzule/main/install-pyzule.sh)"
- name: Set EEVEETAG if EEVEEVERSION not provided
if: ${{ github.event.inputs.EEVEEVERSION == '' }}
run: |
echo "EEVEEVERSION not provided, fetching latest release tag..."
EEVEETAG=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/releases/latest | jq -r .tag_name)
echo "Latest release tag: $EEVEETAG"
echo "EEVEETAG=$EEVEETAG" >> $GITHUB_ENV
- name: Set EEVEETAG if tag provided
if: ${{ env.EEVEEVERSION != '' }}
id: fetch-tags
run: |
EEVEEVERSION="${{ env.EEVEEVERSION }}"
# Fetch all tags from the repository
tags=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/tags | jq -r '.[].name')
# Find the tag that contains the EEVEEVERSION value
for tag in $tags; do
if [[ $tag == *"$EEVEEVERSION"* ]]; then
echo "EEVEETAG=$tag" >> $GITHUB_ENV
echo "EEVEETAG: ${{ env.EEVEETAG }}"
exit 0
fi
done
# If no matching tag is found, fail the job
echo "No matching tag found for EEVEEVERSION=$EEVEEVERSION"
exit 1
echo "Using Release Tag: $EEVEETAG"
- name: Create Build Components folder
run: mkdir -p "Build Components"
- name: Download Spotify IPA
run: |
echo "Downloading From: ${{ github.event.inputs.SPOTURL }}"
# Download the file using curl
curl -LJO "${{ github.event.inputs.SPOTURL }}"
downloaded_file=$(ls -t | head -n1)
mv "$downloaded_file" "Build Components/"
echo "spotifypath=Build Components/$downloaded_file" >> $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: "${{ env.spotifypath }}"
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 and process Orion
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"
echo "Downloading From: https://repo.chariz.com/$FILENAME"
# Download the file using curl
curl -LJO "https://repo.chariz.com/$FILENAME"
downloaded_file=$(ls -t | head -n1)
mv "$downloaded_file" "Build Components/"
orion="Build Components/$downloaded_file"
echo "orion path: $orion"
#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
#Set Env Varibles
echo "orion=Build Components/$downloaded_file" >> $GITHUB_ENV
echo "ORIONVERSION=$ORIONVERSION" >> $GITHUB_ENV
- name: Upload Orion to VirusTotal
if: ${{ env.VIRUSTOTALKEY }}
uses: crazy-max/ghaction-virustotal@v4
id: vt-orion
with:
files: "${{ env.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 and process Sposify
run: |
# Download the Packages file
curl -sSL https://repo.dynastic.co/Packages -o Packages
# Use awk to find entries for com.spos, Architecture: iphoneos-arm, find the highest version
# extract the version, filename, SHA256 Hash, and MD5 hash
SPOSIFYVERSION=$(awk 'BEGIN { RS = ""; FS = "\n"; highest_version = "" } $1 ~ /^Package: com.spos$/ && $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 "Sposify Version Extracted: $SPOSIFYVERSION"
FILENAME=$(awk 'BEGIN{RS="";FS="\n";highest_version=""} $1~/^Package: com.spos$/ && $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 "Sposify FileName Extracted: $FILENAME"
SHA256=$(awk 'BEGIN{RS="";FS="\n";highest_version="";sha256="noSHA"} $1~/^Package: com.spos$/ && $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 "Sposify SHA256 Hash Extracted: $SHA256"
MD5=$(awk 'BEGIN{RS="";FS="\n";highest_version="";md5sum="noMD5"} $1~/^Package: com.spos$/ && $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 "Sposify MD5 Hash Extracted: $MD5"
echo "Downloading From: https://repo.dynastic.co/$FILENAME"
# Download the file using curl
curl -LJO "https://repo.dynastic.co/$FILENAME"
downloaded_file=$(ls -t | head -n1)
mv "$downloaded_file" "Build Components/"
sposify="Build Components/$downloaded_file"
echo "Sposify path: $sposify"
#Check Hash
if [[ "${SHA256}" != "noSHA" ]]; then
echo "Expected SHA256 Hash: ${SHA256}"
calculated_sha256=$(shasum -a 256 "$sposify" | 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 "$sposify" | 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
#Set Env Varibles
echo "sposify=Build Components/$downloaded_file" >> $GITHUB_ENV
echo "SPOSIFYVERSION=$SPOSIFYVERSION" >> $GITHUB_ENV
- name: Upload Sposify to VirusTotal
if: ${{ env.VIRUSTOTALKEY }}
uses: crazy-max/ghaction-virustotal@v4
id: vt-sposify
with:
files: "${{ env.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 and process SposifyFix
run: |
# Download the Packages file
curl -sSL https://level3tjg.me/repo/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
SPOSIFYFIXVERSION=$(awk 'BEGIN { RS = ""; FS = "\n"; highest_version = "" } $1 ~ /^Package: com.level3tjg.sposifyfix$/ && $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 "SposifyFix Version Extracted: $SPOSIFYFIXVERSION"
FILENAME=$(awk 'BEGIN{RS="";FS="\n";highest_version=""} $1~/^Package: com.level3tjg.sposifyfix$/ && $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 "SposifyFix FileName Extracted: $FILENAME"
SHA256=$(awk 'BEGIN{RS="";FS="\n";highest_version="";sha256="noSHA"} $1~/^Package: com.level3tjg.sposifyfix$/ && $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 "SposifyFix SHA256 Hash Extracted: $SHA256"
MD5=$(awk 'BEGIN{RS="";FS="\n";highest_version="";md5sum="noMD5"} $1~/^Package: ccom.level3tjg.sposifyfix$/ && $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 "SposifyFix MD5 Hash Extracted: $MD5"
echo "Downloading From: https://level3tjg.me/repo/Packages/$FILENAME"
# Download the file using curl
curl -LJO "https://level3tjg.me/repo/$FILENAME"
downloaded_file=$(ls -t | head -n1)
mv "$downloaded_file" "Build Components/"
sposifyfix="Build Components/$downloaded_file"
echo "SposifyFix path: $sposifyfix"
#Check Hash
if [[ "${SHA256}" != "noSHA" ]]; then
echo "Expected SHA256 Hash: ${SHA256}"
calculated_sha256=$(shasum -a 256 "$sposifyfix" | 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 "$sposifyfix" | 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
#Set Env Varibles
echo "sposifyfix=Build Components/$downloaded_file" >> $GITHUB_ENV
echo "SPOSIFYFIXVERSION=$SPOSIFYFIXVERSION" >> $GITHUB_ENV
- name: Upload SposifyFix to VirusTotal
if: ${{ env.VIRUSTOTALKEY }}
uses: crazy-max/ghaction-virustotal@v4
id: vt-sposifyfix
with:
files: "${{ env.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: Download EeveeSpotify .deb file from releases
if: ${{ github.event.inputs.USEACTIONSEEVEE == 'false' }}
run: |
eevee_asset=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/releases/tags/${{ env.EEVEETAG }} | jq -r '.assets[] | select(.name | startswith("com.eevee.spotify") and endswith("iphoneos-arm.deb")).browser_download_url')
echo "Downloading From: $eevee_asset"
# Download the file using curl
curl -LJO "$eevee_asset"
downloaded_file=$(ls -t | head -n1)
mv "$downloaded_file" "Build Components/"
echo "eevee-arm=Build Components/$downloaded_file" >> $GITHUB_ENV
env:
EEVEETAG: ${{ env.EEVEETAG }}
- name: Download EeveeSpotify .deb file from artifacts
if: ${{ github.event.inputs.USEACTIONSEEVEE == 'true' }}
run: |
workflow_run_id=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/${{ env.EEVEEREPO }}/actions/workflows/build-swift.yml/runs?status=success&per_page=1" | jq -r '.workflow_runs[0].id')
echo "Workflow ID: $workflow_run_id"
eevee_asset=$(curl -sL -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/actions/runs/$workflow_run_id/artifacts | jq -r '.artifacts[] | select(.name | test("debug|arm64") | not) | .archive_download_url')
echo "Downloading From: $eevee_asset"
curl -LJ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "$eevee_asset" -o "eeveespotfiyactionsasset.zip"
# Extract the downloaded zip file
unzip -q "eeveespotfiyactionsasset.zip" -d extracted_files
# Find the file you need within the extracted files
downloaded_file=$(find extracted_files -type f -name "*.deb" -print -quit)
# Move the found file to the desired directory
mv "$downloaded_file" "Build Components/"
# Clean up extracted files
rm -rf extracted_files
echo "eevee-arm=Build Components/$(basename "$downloaded_file")" >> $GITHUB_ENV
echo "eeveeAssetLink=$eevee_asset" >> $GITHUB_ENV
- name: Upload EeveeSpotify to VirusTotal
if: ${{ env.VIRUSTOTALKEY }}
uses: crazy-max/ghaction-virustotal@v4
id: vt-eevee
with:
files: "${{ env.eevee-arm }}"
vt_api_key: ${{ env.VIRUSTOTALKEY }}
- name: Get Eevee release name
run: |
RELEASE_TITLE=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/${{ env.EEVEEREPO }}/releases/tags/${{ env.EEVEETAG }}" | jq -r '.name')
echo "EEVEEVERSIONNAME=$RELEASE_TITLE" >> $GITHUB_ENV
- 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 -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/releases/tags/${{ env.EEVEETAG }} | jq -r '.assets[] | select(.name | startswith("org.swift.protobuf.swiftprotobuf") and endswith("iphoneos-arm.deb")).browser_download_url')
echo "Downloading From: $protobuf_asset"
# Download the file using curl
curl -LJO "$protobuf_asset"
downloaded_file=$(ls -t | head -n1)
mv "$downloaded_file" "Build Components/"
echo "swiftprotobuf=Build Components/$downloaded_file" >> $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:
EEVEETAG: ${{ env.EEVEETAG }}
- name: Upload SwiftProtobuf to VirusTotal
if: ${{ env.VIRUSTOTALKEY }}
uses: crazy-max/ghaction-virustotal@v4
id: vt-swiftprotobuf
with:
files: "${{ env.swiftprotobuf }}"
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: Clone OpenSpotifySafariExtension
run: git clone https://github.com/whoeevee/OpenSpotifySafariExtension
- name: Copy OpenSpotifySafariExtension.appex to Build Components
run: |
cp -R OpenSpotifySafariExtension/OpenSpotifySafariExtension.appex "Build Components/OpenSpotifySafariExtension.appex"
echo "EXTCOMMIT=$(git -C OpenSpotifySafariExtension rev-parse --short HEAD)"
echo "EXTCOMMIT=$(git -C OpenSpotifySafariExtension rev-parse --short HEAD)" >> $GITHUB_ENV
echo "Extensions Commit is: $EXTCOMMIT"
echo "OSSEXT=Build Components/OpenSpotifySafariExtension.appex" >> $GITHUB_ENV
- name: Compress OpenSpotifySafariExtension to zip
run: |
cd OpenSpotifySafariExtension
echo "Compressing:"
ls
ditto -c -k --sequesterRsrc --keepParent ./ "../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
rm -f "Build Components/OpenSpotifySafariExtension.zip"
- name: Read Spotify Version from Vanilla .ipa
run: |
cp "${{ env.spotifypath }}" "Build Components/SpotifyAnylises.zip"
unzip "Build Components/SpotifyAnylises.zip" -d "Build Components"
cd "Build Components"
cp Payload/Spotify.app/Info.plist "Info.plist"
echo "VANILLASPOTIFYVERSION=$(/usr/libexec/PlistBuddy -c "Print :SpotifyVersionShort" Info.plist)"
echo "VANILLASPOTIFYVERSION=$(/usr/libexec/PlistBuddy -c "Print :SpotifyVersionShort" Info.plist)" >> $GITHUB_ENV
echo "Vanilla Spotify Version: $VANILLASPOTIFYVERSION"
#Clean Up
rm -rf Payload
rm -f SpotifyAnylises.zip
rm -f Info.plist
- name: Check if Vanilla Spotify was updated
run: echo "VANSPOTISUPDATED=$(curl -s https://api.github.com/repos/SpotCompiled/SpotC-Plus-Plus/releases/latest | jq -r '.body' | grep -q "Spotify to version ${{ env.VANILLASPOTIFYVERSION }}" && echo false || echo true)" >> $GITHUB_ENV
- name: Set Change Version
id: set-change-version
run: |
# Retrieve the current CHANGEVERSION input from GitHub Actions
CHANGEVERSION="${{ github.event.inputs.CHANGEVERSION }}"
# If CHANGEVERSION is not provided, fetch the latest tag from GitHub API
if [ -z "$CHANGEVERSION" ]; then
latest_tag=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/SpotCompiled/SpotC-Plus-Plus/releases/latest | jq -r .tag_name)
# Extract the version number without the 'v' prefix
version=${latest_tag#v}
# Split the version number into major, minor, and patch components
IFS='.' read -r -a version_parts <<< "$version"
# Increment the patch version component (assuming the version is in format v2.1.3)
patch=$(( ${version_parts[2]} + 1 ))
# Construct the new version string without the 'v' prefix
new_version="${version_parts[0]}.${version_parts[1]}.$patch"
# Store the new version string in CHANGEVERSION
CHANGEVERSION="$new_version"
fi
# Store the final CHANGEVERSION in GitHub environment variable
echo "CHANGEVERSION=$CHANGEVERSION" >> $GITHUB_ENV
echo "Using ChangeVersion: $CHANGEVERSION"
- name: Set Components Path
run: echo "componentspath=Build Components" >> $GITHUB_ENV
- name: Run Pyzule
run: |
pyzule -i "${{ env.spotifypath }}" -o "${{ env.componentspath }}/SpotC++.v${{ env.CHANGEVERSION }}_v${{ env.VANILLASPOTIFYVERSION }}.ipa" -v ${{ env.CHANGEVERSION }} -f "${{ env.sposifyfix }}" "${{ env.sposify }}" "${{ env.OSSEXT }}" "${{ env.orion }}" "${{ env.swiftprotobuf }}" "${{ env.eevee-arm }}" -u -w -Nfix
echo "patchedspotify=${{ env.componentspath }}/SpotC++.v${{ env.CHANGEVERSION }}_v${{ env.VANILLASPOTIFYVERSION }}.ipa"
echo "patchedspotify=${{ env.componentspath }}/SpotC++.v${{ env.CHANGEVERSION }}_v${{ env.VANILLASPOTIFYVERSION }}.ipa" >> $GITHUB_ENV
echo "Patched Spotify .ipa Located: $patchedspotify"
- name: Upload SpotifyPatched.ipa to VirusTotal
if: ${{ env.VIRUSTOTALKEY }}
uses: crazy-max/ghaction-virustotal@v4
id: vt-spotc
with:
files: "${{ env.patchedspotify }}"
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: Run Pyzule AltStore
run: |
pyzule -i "${{ env.spotifypath }}" -o "${{ env.componentspath }}/SpotC++.v${{ env.CHANGEVERSION }}_v${{ env.VANILLASPOTIFYVERSION }}_ALTSTORESOURCE_ONLY.ipa" -v ${{ env.CHANGEVERSION }} -b com.yodaluca23.SpotCPlusPlus -f "${{ env.sposifyfix }}" "${{ env.sposify }}" "${{ env.OSSEXT }}" "${{ env.orion }}" "${{ env.swiftprotobuf }}" "${{ env.eevee-arm }}" -u -w -Nfix
echo "altpatchedspotify=${{ env.componentspath }}/SpotC++.v${{ env.CHANGEVERSION }}_v${{ env.VANILLASPOTIFYVERSION }}_ALTSTORESOURCE_ONLY.ipa"
echo "altpatchedspotify=${{ env.componentspath }}/SpotC++.v${{ env.CHANGEVERSION }}_v${{ env.VANILLASPOTIFYVERSION }}_ALTSTORESOURCE_ONLY.ipa" >> $GITHUB_ENV
echo "AltStore Patched Spotify .ipa Located: $altpatchedspotify"
- name: Upload AltSpotifyPatched.ipa to VirusTotal
if: ${{ env.VIRUSTOTALKEY }}
uses: crazy-max/ghaction-virustotal@v4
id: vt-altspotc
with:
files: "${{ env.altpatchedspotify }}"
vt_api_key: ${{ env.VIRUSTOTALKEY }}
- name: Set VirusTotal Analysis URL for AltSpotC++
if: ${{ env.VIRUSTOTALKEY }}
run: echo "VTALTSPOTC=${{ steps.vt-altspotc.outputs.analysis }}" >> $GITHUB_ENV
- name: Extract and Prepare VirusTotal Links
run: |
VTSPOTC=$(echo "$VTSPOTC" | sed 's/.*\(https:\/\/.*\)/\1/')
echo "SpotC++ VT: $VTSPOTC"
echo "VTSPOTC=$VTSPOTC" >> $GITHUB_ENV
VTALTSPOTC=$(echo "$VTALTSPOTC" | sed 's/.*\(https:\/\/.*\)/\1/')
echo "AltSpotC++ VT: $VTALTSPOTC"
echo "VTALTSPOTC=$VTALTSPOTC" >> $GITHUB_ENV
VTVANILLASPOTIFY=$(echo "$VTVANILLASPOTIFY" | sed 's/.*\(https:\/\/.*\)/\1/')
echo "Vanilla Spotify VT: $VTVANILLASPOTIFY"
echo "VTVANILLASPOTIFY=$VTVANILLASPOTIFY" >> $GITHUB_ENV
VTEEVEE=$(echo "$VTEEVEE" | sed 's/.*\(https:\/\/.*\)/\1/')
echo "EeveeSpotify VT: $VTEEVEE"
echo "VTEEVEE=$VTEEVEE" >> $GITHUB_ENV
VTSPOSIFY=$(echo "$VTSPOSIFY" | sed 's/.*\(https:\/\/.*\)/\1/')
echo "Sposify VT: $VTSPOSIFY"
echo "VTSPOSIFY=$VTSPOSIFY" >> $GITHUB_ENV
VTEXT=$(echo "$VTEXT" | sed 's/.*\(https:\/\/.*\)/\1/')
echo "OpenSpotifySafariExtension VT: $VTEXT"
echo "VTEXT=$VTEXT" >> $GITHUB_ENV
VTSPOSIFYFIX=$(echo "$VTSPOSIFYFIX" | sed 's/.*\(https:\/\/.*\)/\1/')
echo "SposifyFix VT: $VTSPOSIFYFIX"
echo "VTSPOSIFYFIX=$VTSPOSIFYFIX" >> $GITHUB_ENV
VTORION=$(echo "$VTORION" | sed 's/.*\(https:\/\/.*\)/\1/')
echo "Orion VT: $VTORION"
echo "VTORION=$VTORION" >> $GITHUB_ENV
VTSWIFTPROTOBUF=$(echo "$VTSWIFTPROTOBUF" | sed 's/.*\(https:\/\/.*\)/\1/')
echo "SwiftProtobuf VT: $VTSWIFTPROTOBUF"
echo "VTSWIFTPROTOBUF=$VTSWIFTPROTOBUF" >> $GITHUB_ENV
- name: Construct ChangeLog Pt.1
run: |
echo "## ChangeLog" > changelog.txt
echo "- Updated [EeveeSpotify](https://github.com/${{ env.EEVEEREPO }}) to ${{ env.EEVEEVERSIONNAME }} </br>" >> changelog.txt
- name: Contruct ChangeLog Pt.2 (Eevee ChangeLog [Release])
if: ${{ github.event.inputs.USEACTIONSEEVEE == 'false' }}
run: |
echo "$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/releases/tags/${{ env.EEVEETAG }} | jq -r '.body' | sed 's/^[[:space:]]*[*-+] //; s/^[[:space:]]* //; s/^/- (EeveeSpotify) /')" >> changelog.txt
- name: Contruct ChangeLog Pt.2 (Eevee ChangeLog [Actions])
if: ${{ github.event.inputs.USEACTIONSEEVEE == 'true' }}
run: |
echo "$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/${{ env.EEVEEREPO }}/commits?since=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/releases/latest | jq -r .published_at)" | jq -r '.[].commit.message' | grep -Ev "update: repo|Merge branch .+ of .+ into .+" | sed 's/^/- (EeveeSpotify) /')" >> changelog.txt
- name: Contruct ChangeLog Pt.3 (Spotify was updated? add to changelog)
if: ${{ env.VANSPOTISUPDATED == 'true' }}
run: echo "- Updated Spotify to version ${{ env.VANILLASPOTIFYVERSION }} </br>" >> changelog.txt
- name: Contruct ChangeLog Pt.4 (Rest of changelog)
run: |
# Hyperlink mentions of issues:
tail -n +2 changelog.txt | sed -E 's/#([0-9]+)/[#\1](https:\/\/github.com\/whoeevee\/EeveeSpotify\/issues\/\1)/g' > temp_changelog.txt
head -n 1 changelog.txt > final_changelog.txt
cat temp_changelog.txt >> final_changelog.txt
mv final_changelog.txt changelog.txt
rm temp_changelog.txt
echo "***" >> changelog.txt
echo "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." >> changelog.txt
- name: Construct ChangeLog Pt.5 (Add EeveeSpotify Workflow Link)
if: ${{ github.event.inputs.USEACTIONSEEVEE == 'true' }}
run: |
assetnoZIP=$(echo "${{ env.eeveeAssetLink }}" | sed 's/\/zip$//')
RUN_ID=$(curl -s $assetnoZIP | jq -r .workflow_run.id)
eeveeUserAssetLink=$(echo "${{ env.eeveeAssetLink }}" | sed -E "s|https://api.github.com/repos/([^/]+)/([^/]+)/actions/artifacts/([0-9]+)/zip|https://github.com/\1/\2/actions/runs/${RUN_ID}/artifacts/\3|")
echo "The EeveeSpotify .deb was taken from the [latest Build workflow](${eeveeUserAssetLink})." >> changelog.txt
- name: Construct ChangeLog Pt.6 (Add App Details and Workflow Link)
run: |
echo "App .ipa modified and tweaks injected using [my fork](https://github.com/yodaluca23/pyzule) of [Pyzule](https://github.com/asdfzxcvbn/pyzule) with [the github Action Workflow.](${{ env.WORKFLOWURL }}) </br>" >> changelog.txt
echo "***If you are downloading from this page, and are reading this, DO NOT USE the .ipa labeled _ALTSTORESOURCE_ONLY***" >> changelog.txt
- name: Construct ChangeLog Pt.7 (Add Version Details & VirusTotal Results)
if: ${{ env.VIRUSTOTALKEY != '' }}
run: |
echo "<details>" >> changelog.txt
echo "<summary>Version Details & VirusTotal Results</summary>" >> changelog.txt
echo "<br>" >> changelog.txt
echo "<p>Spotify Version: v${{ env.VANILLASPOTIFYVERSION }}" >> changelog.txt
echo "<br><a href='${{ env.VTVANILLASPOTIFY }}'>Vanilla Spotify VirusTotal</a></p>" >> changelog.txt
echo "<p>EeveeSpotify Version: ${{ env.EEVEEVERSIONNAME }}" >> changelog.txt
echo "<br><a href='${{ env.VTEEVEE }}'>EeveeSpotify .deb VirusTotal</a></p>" >> changelog.txt
echo "<p>Sposify v${{ env.SPOSIFYVERSION }}" >> changelog.txt
echo "<br><a href='${{ env.VTSPOSIFY }}'>Sposify VirusTotal</a></p>" >> changelog.txt
echo "<p>OpenSpotifySafariExtension Commit: ${{ env.EXTCOMMIT }}" >> changelog.txt
echo "<br><a href='${{ env.VTEXT }}'>OpenSpotifySafariExtension Repo Compressed .zip VirusTotal</a></p>" >> changelog.txt
echo "<p>Sposify Fix v${{ env.SPOSIFYFIXVERSION }}" >> changelog.txt
echo "<br><a href='${{ env.VTSPOSIFYFIX }}'>Sposify Fix VirusTotal</a></p>" >> changelog.txt
echo "<p>Orion Runtime (iOS 14 - 16) Version: ${{ env.ORIONVERSION }}" >> changelog.txt
echo "<br><a href='${{ env.VTORION }}'>Orion Runtime (iOS 14 - 16) .deb VirusTotal</a></p>" >> changelog.txt
echo "<p>SwiftProtobuf Framework Version: ${{ env.SWIFTPROTOBUFVERSION }}" >> changelog.txt
echo "<br><a href='${{ env.VTSWIFTPROTOBUF }}'>SwiftProtobuf Framework .deb VirusTotal</a></p>" >> changelog.txt
echo "<p>SpotC++ Version: v${{ env.CHANGEVERSION }}" >> changelog.txt
echo "<br><a href='${{ env.VTSPOTC }}'>SpotC++ VirusTotal</a></p>" >> changelog.txt
echo "<p>AltStore SpotC++ Version: v${{ env.CHANGEVERSION }}" >> changelog.txt
echo "<br><a href='${{ env.VTALTSPOTC }}'>AltStore SpotC++ VirusTotal</a></p>" >> changelog.txt
echo "</details>" >> changelog.txt
- name: Create Draft Release
if: ${{ github.event.inputs.USEACTIONSEEVEE == 'true' || github.event.inputs.EEVEEREPO != '' }}
uses: softprops/action-gh-release@v2
with:
tag_name: "v${{ env.CHANGEVERSION }}"
name: "SpotC++ v${{ env.CHANGEVERSION }}"
draft: true
body_path: changelog.txt
files: |
${{ env.patchedspotify }}
${{ env.altpatchedspotify }}
${{ env.eevee-arm }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Draft Release
if: ${{ github.event.inputs.USEACTIONSEEVEE == 'false' && github.event.inputs.EEVEEREPO == '' }}
uses: softprops/action-gh-release@v2
with:
tag_name: "v${{ env.CHANGEVERSION }}"
name: "SpotC++ v${{ env.CHANGEVERSION }}"
draft: true
body_path: changelog.txt
files: |
${{ env.patchedspotify }}
${{ env.altpatchedspotify }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Download AltStore Repo.json
run: curl "https://raw.githubusercontent.com/SpotCompiled/SpotC-AltStore-Repo/main/AltStore%20Repo.json" -o ./AltStoreRepo.json
- name: Calculate SpotC++ Filesize
run: |
FILE_SIZE=$(stat -f%z "${{ env.patchedspotify }}")
echo "SpotC++ File Size: $FILE_SIZE"
echo "SPOTCSIZE=$FILE_SIZE" >> $GITHUB_ENV
- name: Calculate AltStore SpotC++ Filesize
run: |
FILE_SIZE=$(stat -f%z "${{ env.altpatchedspotify }}")
echo "AltStore SpotC++ File Size: $FILE_SIZE"
echo "ALTSPOTCSIZE=$FILE_SIZE" >> $GITHUB_ENV
- name: Fetch the first bullet point from the EeveeSpotify release changelog
id: fetch-changelog
run: |
BULLET_POINT=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/releases/tags/${{ env.EEVEETAG }} | jq -r '.body' | sed -n 's/^[[:space:]]*[*-+] //p; s/^[[:space:]]* //p' | grep -v '^$' | head -n 1 | awk 'tolower($0) ~ /localization/ {print "Improved localizations."; next} {print}')
echo "BULLET_POINT=$BULLET_POINT" >> $GITHUB_ENV
- name: Set ALTSTORECHANGELOG environment variable
run: |
ALTSTORECHANGELOG="Updated EeveeSpotify to ${{ env.EEVEEVERSIONNAME }}, fixed several bugs. ${{ env.BULLET_POINT }}\n\n More Info:\n https://github.com/SpotCompiled/SpotC-Plus-Plus/releases/tag/v${{ env.CHANGEVERSION }}"
echo "ALTSTORECHANGELOG=$ALTSTORECHANGELOG" >> $GITHUB_ENV
- name: Update AltStore Repo.json
run: |
jq --arg CHANGEVERSION "${{ env.CHANGEVERSION }}" \
--arg CURRENTDATE "$(date +%Y-%-m-%d)" \
--arg SIZE "${{ env.ALTSPOTCSIZE }}" \
--arg ALTSTORECHANGELOG "${{ env.ALTSTORECHANGELOG }}" \
--arg VANILLASPOTIFYVERSION "${{ env.VANILLASPOTIFYVERSION }}" \
--arg EEVEEVERSIONNAME "${{ env.EEVEEVERSIONNAME }}" \
--arg SPOSIFYVERSION "${{ env.SPOSIFYVERSION }}" \
--arg EXTCOMMIT "${{ env.EXTCOMMIT }}" \
--arg SPOSIFYFIXVERSION "${{ env.SPOSIFYFIXVERSION }}" \
--arg ORIONVERSION "${{ env.ORIONVERSION }}" \
--arg SWIFTPROTOBUFVERSION "${{ env.SWIFTPROTOBUFVERSION }}" \
'
(.apps[] | select(.name == "SpotC++") | .version) = $CHANGEVERSION |
(.apps[] | select(.name == "SpotC++") | .versionDate) = $CURRENTDATE |
(.apps[] | select(.name == "SpotC++") | .size) = ($SIZE | tonumber) |
(.apps[] | select(.name == "SpotC++") | .changelog) = $ALTSTORECHANGELOG |
(.apps[] | select(.name == "SpotC++") | .versionDescription) = $ALTSTORECHANGELOG |
(.apps[] | select(.name == "SpotC++") | .downloadURL) = "https://github.com/SpotCompiled/SpotC-Plus-Plus/releases/download/v\($CHANGEVERSION)/SpotC++.v\($CHANGEVERSION)_v\($VANILLASPOTIFYVERSION)_ALTSTORESOURCE_ONLY.ipa" |
(.apps[] | select(.name == "SpotC++") | .versions) |= [{
"version": $CHANGEVERSION,
"date": $CURRENTDATE,
"localizedDescription": $ALTSTORECHANGELOG,
"downloadURL": "https://github.com/SpotCompiled/SpotC-Plus-Plus/releases/download/v\($CHANGEVERSION)/SpotC++.v\($CHANGEVERSION)_v\($VANILLASPOTIFYVERSION)_ALTSTORESOURCE_ONLY.ipa",
"size": ($SIZE | tonumber),
"minOSVersion": "15.0"
}] + . |
(.apps[] | select(.name == "SpotC++") | .information) = [
{
"item": "Spotify",
"version": "v\($VANILLASPOTIFYVERSION)",
"authors": "Spotify AB",
"url": "https://www.spotify.com"
},
{
"item": "EeveeSpotify",
"version": $EEVEEVERSIONNAME,
"authors": "Whoeevee & Asdfzxcvbn",
"url": "https://github.com/${{ env.EEVEEREPO }}"
},
{
"item": "Sposify",
"version": "v\($SPOSIFYVERSION)",
"authors": "aesthyrica",
"url": "https://repo.dynastic.co/package/com.spos"
},
{
"item": "OpenSpotifySafariExtension",
"version": "Commit \($EXTCOMMIT)",
"authors": "Whoeevee",
"url": "https://github.com/whoeevee/OpenSpotifySafariExtension"
},
{
"item": "Sposify Fix",
"version": "v\($SPOSIFYFIXVERSION)",
"authors": "level3tjg",
"url": "https://level3tjg.me/repo/depictions?p=com.level3tjg.sposifyfix"
},
{
"item": "Orion Runtime",
"version": "v\($ORIONVERSION)",
"authors": "Theos Team",
"url": "https://orion.theos.dev"
},
{
"item": "SwiftProtobuf Framework",
"version": "v\($SWIFTPROTOBUFVERSION)",
"authors": "Apple Inc.",
"url": "https://github.com/apple/swift-protobuf"
}
]
' AltStoreRepo.json > AltStoreRepo_updated.json
mv AltStoreRepo_updated.json AltStoreRepo.json
- name: Upload updated AltStore Repo.json as artifact
uses: actions/upload-artifact@v4
with:
name: UpdatedAltStoreRepo
path: AltStoreRepo.json
- name: Download Scarlet Repo.json
run: curl "https://raw.githubusercontent.com/SpotCompiled/SpotC-Repo/main/Scarlet%20Repo.json" -o ./ScarletRepo.json
- name: Update Scarlet Repo.json
run: |
jq --arg CHANGEVERSION "${{ env.CHANGEVERSION }}" \
--arg CURRENTDATE "$(date +%Y-%-m-%d)" \
--arg SIZE "${{ env.SPOTCSIZE }}" \
--arg SCARLETCHANGELOG "${{ env.ALTSTORECHANGELOG }}" \
--arg VANILLASPOTIFYVERSION "${{ env.VANILLASPOTIFYVERSION }}" \
--arg EEVEEVERSIONNAME "${{ env.EEVEEVERSIONNAME }}" \
--arg SPOSIFYVERSION "${{ env.SPOSIFYVERSION }}" \
--arg EXTCOMMIT "${{ env.EXTCOMMIT }}" \
--arg SPOSIFYFIXVERSION "${{ env.SPOSIFYFIXVERSION }}" \
--arg ORIONVERSION "${{ env.ORIONVERSION }}" \
--arg SWIFTPROTOBUFVERSION "${{ env.SWIFTPROTOBUFVERSION }}" \
'
(.apps[] | select(.name == "SpotC++") | .version) = $CHANGEVERSION |
(.apps[] | select(.name == "SpotC++") | .versionDate) = $CURRENTDATE |
(.apps[] | select(.name == "SpotC++") | .size) = ($SIZE | tonumber) |
(.apps[] | select(.name == "SpotC++") | .changelog) = $SCARLETCHANGELOG |
(.apps[] | select(.name == "SpotC++") | .versionDescription) = $SCARLETCHANGELOG |
(.apps[] | select(.name == "SpotC++") | .downloadURL) = "https://github.com/SpotCompiled/SpotC-Plus-Plus/releases/download/v\($CHANGEVERSION)/SpotC++.v\($CHANGEVERSION)_v\($VANILLASPOTIFYVERSION).ipa" |
(.apps[] | select(.name == "SpotC++") | .versions) |= [{
"version": $CHANGEVERSION,
"date": $CURRENTDATE,
"localizedDescription": $SCARLETCHANGELOG,
"downloadURL": "https://github.com/SpotCompiled/SpotC-Plus-Plus/releases/download/v\($CHANGEVERSION)/SpotC++.v\($CHANGEVERSION)_v\($VANILLASPOTIFYVERSION).ipa",
"size": ($SIZE | tonumber),
"minOSVersion": "15.0"
}] + . |
(.apps[] | select(.name == "SpotC++") | .information) = [
{
"item": "Spotify",
"version": "v\($VANILLASPOTIFYVERSION)",
"authors": "Spotify AB",
"url": "https://www.spotify.com"
},
{
"item": "EeveeSpotify",
"version": $EEVEEVERSIONNAME,
"authors": "Whoeevee & Asdfzxcvbn",
"url": "https://github.com/${{ env.EEVEEREPO }}"
},
{
"item": "Sposify",
"version": "v\($SPOSIFYVERSION)",
"authors": "aesthyrica",
"url": "https://repo.dynastic.co/package/com.spos"
},
{
"item": "OpenSpotifySafariExtension",
"version": "Commit \($EXTCOMMIT)",
"authors": "Whoeevee",
"url": "https://github.com/whoeevee/OpenSpotifySafariExtension"
},
{
"item": "Sposify Fix",
"version": "v\($SPOSIFYFIXVERSION)",
"authors": "level3tjg",
"url": "https://level3tjg.me/repo/depictions?p=com.level3tjg.sposifyfix"
},
{
"item": "Orion Runtime",
"version": "v\($ORIONVERSION)",
"authors": "Theos Team",
"url": "https://orion.theos.dev"
},
{
"item": "SwiftProtobuf Framework",
"version": "v\($SWIFTPROTOBUFVERSION)",
"authors": "Apple Inc.",
"url": "https://github.com/apple/swift-protobuf"
}
]
' ScarletRepo.json > ScarletRepo_updated.json
mv ScarletRepo_updated.json ScarletRepo.json
- name: Upload updated Scarlet Repo.json as artifact
uses: actions/upload-artifact@v4
with:
name: UpdatedScarletRepo
path: ScarletRepo.json