Skip to content

Commit 9ae1eda

Browse files
committed
remove dbug siginign:
1 parent fdd2ae5 commit 9ae1eda

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/android.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
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
@@ -61,6 +61,13 @@ jobs:
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

app/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)