Skip to content
This repository was archived by the owner on Dec 6, 2025. It is now read-only.

Commit 87e70d9

Browse files
committed
Merge origin/main
2 parents a199895 + 71588d0 commit 87e70d9

2 files changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/release-app.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,22 +117,22 @@ jobs:
117117
unset ANDROID_NDK_HOME
118118
echo '${{ secrets.SIGNING_KEYSTORE_JKS_BASE64 }}' | base64 -d > "$SYNCTHING_RELEASE_STORE_FILE"
119119
java -version
120-
./gradlew --no-daemon buildNative lintRelease assembleRelease bundlegplay
120+
./gradlew --no-daemon buildNative lintRelease assembleRelease bundlerelease
121121
rm "$SYNCTHING_RELEASE_STORE_FILE"
122122
123123
- name: prepare-artifacts
124124
shell: bash
125125
run: |
126126
set -eu
127127
#
128-
cd "app/build/outputs/apk/release"
129-
mv "app/build/outputs/apk/release/app-release.apk" "app/build/outputs/apk/release/${{ env.APPLICATION_ID }}_release_v${{ env.VERSION }}_${{ env.COMMIT_HASH }}.apk"
130-
mv "app/build/outputs/bundle/gplay/app-gplay.aab" "app/build/outputs/bundle/gplay/${{ env.APPLICATION_ID }}_gplay_v${{ env.VERSION }}_${{ env.COMMIT_HASH }}.aab"
128+
cd "app/build/outputs"
129+
mv "apk/release/app-release.apk" "apk/release/${{ env.APPLICATION_ID }}_release_v${{ env.VERSION }}_${{ env.COMMIT_HASH }}.apk"
130+
mv "bundle/release/app-release.aab" "bundle/release/${{ env.APPLICATION_ID }}_gplay_v${{ env.VERSION }}_${{ env.COMMIT_HASH }}.aab"
131131
#
132132
133133
- uses: ncipollo/release-action@v1
134134
with:
135-
artifacts: "app/build/outputs/apk/release/*.apk,app/build/outputs/bundle/gplay/*.aab"
135+
artifacts: "app/build/outputs/apk/release/*.apk,app/build/outputs/bundle/release/*.aab"
136136
artifactErrorsFailBuild: true
137137
name: Syncthing-Fork v${{ env.VERSION }}
138138
bodyFile: "app/src/main/play/release-notes/en-US/default.txt"

app/build.gradle.kts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,6 @@ android {
8080
.getOrNull()
8181
.takeIf { it?.storeFile != null }
8282
}
83-
create("gplay") {
84-
initWith(getByName("release"))
85-
}
8683
}
8784

8885
compileOptions {

0 commit comments

Comments
 (0)