Skip to content

Instantly share code, notes, and snippets.

@DanielMSchmidt
Created May 9, 2017 22:13
Show Gist options
  • Save DanielMSchmidt/fc8e4d0fa586c442ed66810faf1cc346 to your computer and use it in GitHub Desktop.
Save DanielMSchmidt/fc8e4d0fa586c442ed66810faf1cc346 to your computer and use it in GitHub Desktop.
Expo deployment through wercker
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