Created
May 9, 2017 22:13
-
-
Save DanielMSchmidt/fc8e4d0fa586c442ed66810faf1cc346 to your computer and use it in GitHub Desktop.
Expo deployment through wercker
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
box: node | |
build: | |
steps: | |
- script: | |
name: Install Exponent CLI | |
code: | | |
npm install -g exp | |
# A step that executes `npm install` command | |
- npm-install | |
# Steps to run the deployment | |
- script: | |
name: Log-in to exponent account | |
code: | | |
exp login -u $EXPO_USERNAME -p $EXPO_PASSWORD | |
- script: | |
name: Publish the application | |
code: | | |
exp publish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment