Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created February 26, 2020 18:33
Show Gist options
  • Select an option

  • Save r3dm1ke/00211ef6380b9e918a561df18acd623b to your computer and use it in GitHub Desktop.

Select an option

Save r3dm1ke/00211ef6380b9e918a561df18acd623b to your computer and use it in GitHub Desktop.
name: Test & Publish
on:
push:
branches:
- master
jobs:
publish:
name: Install and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12.x
- uses: expo/expo-github-action@v5
with:
expo-version: 3.x
expo-username: ${{ secrets.EXPO_CLI_USERNAME }}
expo-password: ${{ secrets.EXPO_CLI_PASSWORD }}
expo-packager: npm
- run: npm ci
- run: npm test
- run: expo doctor
- run: expo publish
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment