mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-07 03:07:26 +01:00
233fc38c23
This reverts commit 215d31f8ea
.
27 lines
803 B
YAML
27 lines
803 B
YAML
pipeline:
|
|
build:
|
|
image: alvrme/alpine-android:android-33-jdk11
|
|
commands:
|
|
- ./gradlew :app:assembleminifiedRelease
|
|
when:
|
|
path: [ app/**, build.gradle ]
|
|
sign:
|
|
image: alvrme/alpine-android:android-33-jdk11
|
|
commands:
|
|
- ./scripts/apk-sign.sh LemmInfinity-signed.apk app/build/outputs/apk/release/app-release-unsigned.apk
|
|
secrets: [ APK_KS_PASS, APK_KS, APK_KS_ALIAS ]
|
|
when:
|
|
event: [ tag ]
|
|
publish:
|
|
image: woodpeckerci/plugin-gitea-release
|
|
settings:
|
|
base_url: https://codeberg.org
|
|
files:
|
|
- LemmInfinity-signed.apk
|
|
api_key:
|
|
from_secret: GITEA_ACCESS_TOKEN
|
|
target: main
|
|
prerelease: true
|
|
note: "This is an alpha release. Expect many bugs and unfinished features!"
|
|
when:
|
|
event: [ tag ] |