blob: 2e1f4401a1858fd06576bc8e2aa18f1c380d6f06 (
plain) (
tree)
|
|
image: node:alpine
variables:
DOCKER_DRIVER: overlay
stages:
- publish
publish-develop:
stage: publish
script:
- apk add git
- npm install
- npx expo login -u $EXPO_USERNAME -p $EXPO_PASSWORD
- npx expo publish --release-channel develop --non-interactive
only:
- develop
publish-master:
stage: publish
script:
- apk add git
- npm install
- npx expo login -u $EXPO_USERNAME -p $EXPO_PASSWORD
- npx expo publish --non-interactive
only:
- master
|