File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 5151 VERSION=$(grep versionName app/build.gradle | head -1 | sed 's/.*versionName *= *"\(.*\)".*/\1/')
5252 echo "version=$VERSION" >> $GITHUB_OUTPUT
5353
54- - name : Upload APKs per ABI
54+ - name : Upload APKs
5555 run : |
5656 APK_DIR=app/build/outputs/apk/fdroid/release
5757 for apk in $APK_DIR/*.apk; do
6161 else
6262 ABI=$(echo "$filename" | sed -E 's/.*-([a-z0-9_]+)\.apk/\1/')
6363 fi
64- echo "Uploading $apk as QuestPhone-${{ steps.version.outputs.version }}-$ABI.apk"
65- gh actions upload-artifact "$apk" --name "QuestPhone-${{ steps.version.outputs.version }}-$ABI.apk"
64+ echo "Found APK: $apk with ABI: $ABI"
65+ # Copy to a standardized name for upload
66+ cp "$apk" "QuestPhone-${{ steps.version.outputs.version }}-$ABI.apk"
6667 done
68+
69+ - name : Upload artifacts
70+ uses : actions/upload-artifact@v4
71+ with :
72+ name : QuestPhone-APKs-${{ steps.version.outputs.version }}
73+ path : QuestPhone-*.apk
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ android {
4545 getDefaultProguardFile(" proguard-android-optimize.txt" ),
4646 " proguard-rules.pro"
4747 )
48- signingConfig = signingConfigs.getByName(" debug" )
4948 }
5049 }
5150 compileOptions {
You can’t perform that action at this time.
0 commit comments