This commit is contained in:
parent
60617daef2
commit
b450d3a406
1 changed files with 18 additions and 0 deletions
18
.drone.yml
Normal file
18
.drone.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
kind: pipeline
|
||||||
|
name: build and publish Qt Android-App
|
||||||
|
steps:
|
||||||
|
- name: build apk
|
||||||
|
image: itsblue.dev/plugins/qt-android:5.15.5-1
|
||||||
|
settings:
|
||||||
|
qmake_arguments: "CONFIG+=release"
|
||||||
|
androiddeployqt_arguments: "--android-platform android-31"
|
||||||
|
- 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/ScStw/generic/app/0.0.0-preview-${DRONE_COMMIT_SHA}/ScStwApp.apk"
|
||||||
|
environment:
|
||||||
|
GITEA_USER:
|
||||||
|
from_secret: gitea-user
|
||||||
|
GITEA_TOKEN:
|
||||||
|
from_secret: gitea-token
|
Reference in a new issue