Infinity-For-Lemmy/.woodpecker/build.yaml

20 lines
556 B
YAML
Raw Normal View History

pipeline:
build:
image: alvrme/alpine-android:android-33-jdk11
commands:
- ./gradlew :app:assemble
when:
path: [ app/**, build.gradle ]
publish:
image: woodpeckerci/plugin-gitea-release
settings:
base_url: https://codeberg.org
files:
- app/build/outputs/apk/release/app-release-unsigned.apk
api_key:
from_secret: GITEA_ACCESS_TOKEN
target: main
prerelease: true
note: "This is an alpha release. Expect many bugs and unfinished features!"
2023-07-25 17:02:02 +02:00
when:
event: [ tag ]