Update '.drone.yml'
Some checks are pending
continuous-integration/drone/push Build is running

This commit is contained in:
Dorian Zedler 2022-08-08 23:48:09 +02:00
parent 88ebde27f2
commit 30471725d0

View file

@ -1,24 +1,31 @@
kind: pipeline kind: pipeline
name: build and publish site name: default
steps: steps:
- name: submodules - name: submodules
image: alpine/git image: alpine/git
commands: commands:
- git submodule update --init --recursive - git submodule update --init --recursive
- name: build apk - name: build app
image: itsblue.dev/plugins/qt-android:5.15.5-2 image: itsblue.dev/plugins/qt-android:5.15.5-3
settings: settings:
qmake_arguments: "CONFIG+=release" qmake_arguments: "CONFIG+=release"
androiddeployqt_arguments: "--android-platform android-31" androiddeployqt_arguments: "--android-platform android-31 --aab"
src_dir: app
android_keystore_data:
from_secret: android-release-keystore
android_keystore_alias: "bmca"
android_keystore_store_pass:
from_secret: android-release-keystore-password
- name: publish package - name: release
image: alpine/curl image: plugins/gitea-release
commands: settings:
- env base_url: https://itsblue.dev
- "curl --fail --user $GITEA_USER:$GITEA_TOKEN --upload-file outputs/apk/debug/android-build-debug.apk https://itsblue.dev/api/packages/bluerock/generic/app/0-preview-${DRONE_COMMIT_SHA}/bluerock.apk" api_key:
environment:
GITEA_USER:
from_secret: gitea-user
GITEA_TOKEN:
from_secret: gitea-token from_secret: gitea-token
files:
- app/outputs/apk/release/android-build-release-signed.apk
- app/outputs/bundle/release/android-build-release.aab
when:
event: tag