update .nake-app.yaml

This commit is contained in:
Alexander Kacheryants 2024-06-20 05:38:59 +03:00
parent 01d337384a
commit 944c408752

View File

@ -21,4 +21,25 @@ steps:
image: mingc/android-build-box image: mingc/android-build-box
commands: commands:
- cd android - cd android
- bash -c "chmod +x gradlew; ./gradlew bundleRelease" - bash -c "chmod +x gradlew; ./gradlew assemble"
- name: Publish app
image: ocram85/plugin-gitea-package:latest
pull: true
secrets: [ gitea_user, gitea_passwd]
settings:
user:
from_secret: gitea_user
password:
from_secret: gitea_passwd
debug: "true"
owner: "plugins"
package_name: "dummy_package"
package_version: "0.1.0"
file_source: "./android/app/build/apk/app-debug-unaligned.apk"
file_name: "app-debug-unaligned.apk"
update: "true"
when:
event: release
branch: ${CI_REPO_DEFAULT_BRANCH}