library/.woodpecker/.make-app.yaml
2024-06-20 03:25:30 +03:00

26 lines
490 B
YAML

when:
- event: [push, pull_request, manual, deployment, tag, release, pull_request]
steps:
- name: Install dependencies
image: node:latest
commands:
- npm i
- name: Build web app
image: node:latest
commands:
- npm run build
- name: Ionic sync
image: node:latest
commands:
- npx cap sync
- name: Build Android app
image: mingc/android-build-box
commands:
- cd android
- chmod +X ./gradlew
- ./gradlew bundleRelease