Dorian Zedler
55a5aac4e1
Some checks reported errors
continuous-integration/drone/push Build was killed
24 lines
No EOL
672 B
YAML
24 lines
No EOL
672 B
YAML
kind: pipeline
|
|
name: build and publish site
|
|
steps:
|
|
- name: submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
|
|
- name: build apk
|
|
image: itsblue.dev/plugins/qt-android:5.15.5-1
|
|
settings:
|
|
qmake_attributes: "CONFIG+=release"
|
|
androiddeployqt_attributes: "--aab"
|
|
|
|
- name: publish package
|
|
image: alpine/curl
|
|
commands:
|
|
- env
|
|
- "curl --user $GITEA_USER:$GITEA_TOKEN --upload-file outputs/apk/debug/android-build-debug.apk https://itsblue.dev/api/packages/bluerock/generic/app/${DRONE_COMMIT_SHA}/bluerock.apk"
|
|
environment:
|
|
GITEA_USER:
|
|
from_secret: gitea-user
|
|
GITEA_TOKEN:
|
|
from_secret: gitea-token |