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: ubuntu:20.04 commands: - 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: docker_username GITEA_TOKEN: from_secret: docker_password