Skip to content

Instantly share code, notes, and snippets.

@devillecodes
Last active October 16, 2016 15:06
Show Gist options
  • Save devillecodes/9b24059152ce76f2f6f551598fefcc77 to your computer and use it in GitHub Desktop.
Save devillecodes/9b24059152ce76f2f6f551598fefcc77 to your computer and use it in GitHub Desktop.
Ionic Package Build Wercker Example
# 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/ionic-login@1.0.1:
email: $IONIC_EMAIL
password: $IONIC_PASSWORD
# submit for packaging via Ionic.io for the android platform
- devillex/ionic-package-build@1.0.2:
platform: android
profile: development
# submit for packaging via Ionic.io for the ios platform
- devillex/ionic-package-build@1.0.2:
platform: ios
profile: development
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment