Merge branch 'main' of ssh://itsblue.dev/blueROCK/app
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
commit
766da23e26
1 changed files with 27 additions and 21 deletions
34
.drone.yml
34
.drone.yml
|
@ -1,24 +1,30 @@
|
|||
kind: pipeline
|
||||
name: build and publish site
|
||||
name: default
|
||||
steps:
|
||||
- name: submodules
|
||||
- name: submodules
|
||||
image: alpine/git
|
||||
commands:
|
||||
- git submodule update --init --recursive
|
||||
|
||||
- name: build apk
|
||||
image: itsblue.dev/plugins/qt-android:5.15.5-2
|
||||
- name: build app
|
||||
image: itsblue.dev/plugins/qt-android:5.15.5-3
|
||||
settings:
|
||||
qmake_arguments: "CONFIG+=release"
|
||||
androiddeployqt_arguments: "--android-platform android-31"
|
||||
androiddeployqt_arguments: "--android-platform android-31 --aab"
|
||||
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
|
||||
image: alpine/curl
|
||||
commands:
|
||||
- env
|
||||
- "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"
|
||||
environment:
|
||||
GITEA_USER:
|
||||
from_secret: gitea-user
|
||||
GITEA_TOKEN:
|
||||
- name: release
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
base_url: https://itsblue.dev
|
||||
api_key:
|
||||
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
|
Loading…
Reference in a new issue