Skip to content

Instantly share code, notes, and snippets.

@raicerk
Forked from lennonjesus/.gitlab-ci.yml
Created April 28, 2018 00:50
Show Gist options
  • Save raicerk/69195291c98d254bdfbfc730f43289f6 to your computer and use it in GitHub Desktop.
Save raicerk/69195291c98d254bdfbfc730f43289f6 to your computer and use it in GitHub Desktop.
Gitlab CI - Build Ionic 3 Project and generates apk files
# 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