-
-
Save raicerk/69195291c98d254bdfbfc730f43289f6 to your computer and use it in GitHub Desktop.
Gitlab CI - Build Ionic 3 Project and generates apk files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gitlab CI - Build Ionic 3 Project and generates apk files | |
image: beevelop/ionic:latest | |
stages: | |
- deploy | |
cache: | |
untracked: true | |
key: "$CI_PROJECT_ID" | |
paths: | |
- node_modules/ | |
build_android: | |
stage: deploy | |
only: | |
- develop | |
script: | |
- ls | |
- npm i | |
- ionic cordova platform rm android | |
- ionic cordova platform add android | |
- ionic cordova build android | |
- ls ./platforms/android/build/outputs/apk/android*.apk | |
artifacts: | |
paths: | |
- platforms/android/build/outputs/apk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment