Last active
October 16, 2016 15:06
-
-
Save devilleweppenaar/9b24059152ce76f2f6f551598fefcc77 to your computer and use it in GitHub Desktop.
Ionic Package Build Wercker Example
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
# use the Node LTS with Ionic CLI installed | |
box: devillex/docker-ionic | |
build: | |
steps: | |
- npm-install | |
- script: | |
name: run npm build | |
code: npm run build | |
ionic-package: | |
steps: | |
# log into Ionic.io | |
- devillex/[email protected]: | |
email: $IONIC_EMAIL | |
password: $IONIC_PASSWORD | |
# submit for packaging via Ionic.io for the android platform | |
- devillex/[email protected]: | |
platform: android | |
profile: development | |
# submit for packaging via Ionic.io for the ios platform | |
- devillex/[email protected]: | |
platform: ios | |
profile: development |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment